You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
defget_audience_groups(self, page : Annotated[conint(strict=True, ge=1), Field(..., description="The page to return when getting (paginated) results. Must be 1 or higher.")], description : Annotated[StrictStr, Field(..., description="The name of the audience(s) to return. You can search for partial matches. This is case-insensitive, meaning AUDIENCE and audience are considered identical. If omitted, the name of the audience(s) will not be used as a search criterion. ")], status : Annotated[AudienceGroupStatus, Field(..., description="The status of the audience(s) to return. If omitted, the status of the audience(s) will not be used as a search criterion. ")], size : Annotated[conint(strict=True, le=40), Field(..., description="The number of audiences per page. Default: 20 Max: 40 ")], includes_external_public_groups : Annotated[StrictBool, Field(..., description="true (default): Get public audiences created in all channels linked to the same bot. false: Get audiences created in the same channel. ")], create_route : Annotated[AudienceGroupCreateRoute, Field(..., description="How the audience was created. If omitted, all audiences are included. `OA_MANAGER`: Return only audiences created with LINE Official Account Manager (opens new window). `MESSAGING_API`: Return only audiences created with Messaging API. ")], **kwargs) ->GetAudienceGroupsResponse: # noqa: E501
1176
+
defget_audience_groups(self, page : Annotated[conint(strict=True, ge=1), Field(..., description="The page to return when getting (paginated) results. Must be 1 or higher.")], description : Annotated[Optional[StrictStr], Field(description="The name of the audience(s) to return. You can search for partial matches. This is case-insensitive, meaning AUDIENCE and audience are considered identical. If omitted, the name of the audience(s) will not be used as a search criterion. ")] =None, status : Annotated[Optional[AudienceGroupStatus], Field(description="The status of the audience(s) to return. If omitted, the status of the audience(s) will not be used as a search criterion. ")] =None, size : Annotated[Optional[conint(strict=True, le=40)], Field(description="The number of audiences per page. Default: 20 Max: 40 ")] =None, includes_external_public_groups : Annotated[Optional[StrictBool], Field(description="true (default): Get public audiences created in all channels linked to the same bot. false: Get audiences created in the same channel. ")] =None, create_route : Annotated[Optional[AudienceGroupCreateRoute], Field(description="How the audience was created. If omitted, all audiences are included. `OA_MANAGER`: Return only audiences created with LINE Official Account Manager (opens new window). `MESSAGING_API`: Return only audiences created with Messaging API. ")] =None, **kwargs) ->GetAudienceGroupsResponse: # noqa: E501
1175
1177
"""get_audience_groups # noqa: E501
1176
1178
1177
1179
Gets data for more than one audience. # noqa: E501
:param page: The page to return when getting (paginated) results. Must be 1 or higher. (required)
1185
1187
:type page: int
1186
-
:param description: The name of the audience(s) to return. You can search for partial matches. This is case-insensitive, meaning AUDIENCE and audience are considered identical. If omitted, the name of the audience(s) will not be used as a search criterion. (required)
1188
+
:param description: The name of the audience(s) to return. You can search for partial matches. This is case-insensitive, meaning AUDIENCE and audience are considered identical. If omitted, the name of the audience(s) will not be used as a search criterion.
1187
1189
:type description: str
1188
-
:param status: The status of the audience(s) to return. If omitted, the status of the audience(s) will not be used as a search criterion. (required)
1190
+
:param status: The status of the audience(s) to return. If omitted, the status of the audience(s) will not be used as a search criterion.
1189
1191
:type status: AudienceGroupStatus
1190
-
:param size: The number of audiences per page. Default: 20 Max: 40 (required)
1192
+
:param size: The number of audiences per page. Default: 20 Max: 40
1191
1193
:type size: int
1192
-
:param includes_external_public_groups: true (default): Get public audiences created in all channels linked to the same bot. false: Get audiences created in the same channel. (required)
1194
+
:param includes_external_public_groups: true (default): Get public audiences created in all channels linked to the same bot. false: Get audiences created in the same channel.
1193
1195
:type includes_external_public_groups: bool
1194
-
:param create_route: How the audience was created. If omitted, all audiences are included. `OA_MANAGER`: Return only audiences created with LINE Official Account Manager (opens new window). `MESSAGING_API`: Return only audiences created with Messaging API. (required)
1196
+
:param create_route: How the audience was created. If omitted, all audiences are included. `OA_MANAGER`: Return only audiences created with LINE Official Account Manager (opens new window). `MESSAGING_API`: Return only audiences created with Messaging API.
1195
1197
:type create_route: AudienceGroupCreateRoute
1196
1198
:param async_req: Whether to execute the request asynchronously.
defget_audience_groups_with_http_info(self, page : Annotated[conint(strict=True, ge=1), Field(..., description="The page to return when getting (paginated) results. Must be 1 or higher.")], description : Annotated[StrictStr, Field(..., description="The name of the audience(s) to return. You can search for partial matches. This is case-insensitive, meaning AUDIENCE and audience are considered identical. If omitted, the name of the audience(s) will not be used as a search criterion. ")], status : Annotated[AudienceGroupStatus, Field(..., description="The status of the audience(s) to return. If omitted, the status of the audience(s) will not be used as a search criterion. ")], size : Annotated[conint(strict=True, le=40), Field(..., description="The number of audiences per page. Default: 20 Max: 40 ")], includes_external_public_groups : Annotated[StrictBool, Field(..., description="true (default): Get public audiences created in all channels linked to the same bot. false: Get audiences created in the same channel. ")], create_route : Annotated[AudienceGroupCreateRoute, Field(..., description="How the audience was created. If omitted, all audiences are included. `OA_MANAGER`: Return only audiences created with LINE Official Account Manager (opens new window). `MESSAGING_API`: Return only audiences created with Messaging API. ")], **kwargs) ->ApiResponse: # noqa: E501
1215
+
defget_audience_groups_with_http_info(self, page : Annotated[conint(strict=True, ge=1), Field(..., description="The page to return when getting (paginated) results. Must be 1 or higher.")], description : Annotated[Optional[StrictStr], Field(description="The name of the audience(s) to return. You can search for partial matches. This is case-insensitive, meaning AUDIENCE and audience are considered identical. If omitted, the name of the audience(s) will not be used as a search criterion. ")] =None, status : Annotated[Optional[AudienceGroupStatus], Field(description="The status of the audience(s) to return. If omitted, the status of the audience(s) will not be used as a search criterion. ")] =None, size : Annotated[Optional[conint(strict=True, le=40)], Field(description="The number of audiences per page. Default: 20 Max: 40 ")] =None, includes_external_public_groups : Annotated[Optional[StrictBool], Field(description="true (default): Get public audiences created in all channels linked to the same bot. false: Get audiences created in the same channel. ")] =None, create_route : Annotated[Optional[AudienceGroupCreateRoute], Field(description="How the audience was created. If omitted, all audiences are included. `OA_MANAGER`: Return only audiences created with LINE Official Account Manager (opens new window). `MESSAGING_API`: Return only audiences created with Messaging API. ")] =None, **kwargs) ->ApiResponse: # noqa: E501
1214
1216
"""get_audience_groups # noqa: E501
1215
1217
1216
1218
Gets data for more than one audience. # noqa: E501
:param page: The page to return when getting (paginated) results. Must be 1 or higher. (required)
1224
1226
:type page: int
1225
-
:param description: The name of the audience(s) to return. You can search for partial matches. This is case-insensitive, meaning AUDIENCE and audience are considered identical. If omitted, the name of the audience(s) will not be used as a search criterion. (required)
1227
+
:param description: The name of the audience(s) to return. You can search for partial matches. This is case-insensitive, meaning AUDIENCE and audience are considered identical. If omitted, the name of the audience(s) will not be used as a search criterion.
1226
1228
:type description: str
1227
-
:param status: The status of the audience(s) to return. If omitted, the status of the audience(s) will not be used as a search criterion. (required)
1229
+
:param status: The status of the audience(s) to return. If omitted, the status of the audience(s) will not be used as a search criterion.
1228
1230
:type status: AudienceGroupStatus
1229
-
:param size: The number of audiences per page. Default: 20 Max: 40 (required)
1231
+
:param size: The number of audiences per page. Default: 20 Max: 40
1230
1232
:type size: int
1231
-
:param includes_external_public_groups: true (default): Get public audiences created in all channels linked to the same bot. false: Get audiences created in the same channel. (required)
1233
+
:param includes_external_public_groups: true (default): Get public audiences created in all channels linked to the same bot. false: Get audiences created in the same channel.
1232
1234
:type includes_external_public_groups: bool
1233
-
:param create_route: How the audience was created. If omitted, all audiences are included. `OA_MANAGER`: Return only audiences created with LINE Official Account Manager (opens new window). `MESSAGING_API`: Return only audiences created with Messaging API. (required)
1235
+
:param create_route: How the audience was created. If omitted, all audiences are included. `OA_MANAGER`: Return only audiences created with LINE Official Account Manager (opens new window). `MESSAGING_API`: Return only audiences created with Messaging API.
1234
1236
:type create_route: AudienceGroupCreateRoute
1235
1237
:param async_req: Whether to execute the request asynchronously.
Copy file name to clipboardExpand all lines: linebot/v3/audience/docs/ManageAudience.md
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -610,7 +610,7 @@ This endpoint does not need any parameter.
610
610
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
page =56# int | The page to return when getting (paginated) results. Must be 1 or higher.
653
-
description ='description_example'# str | The name of the audience(s) to return. You can search for partial matches. This is case-insensitive, meaning AUDIENCE and audience are considered identical. If omitted, the name of the audience(s) will not be used as a search criterion.
654
-
status = linebot.v3.audience.AudienceGroupStatus() # AudienceGroupStatus | The status of the audience(s) to return. If omitted, the status of the audience(s) will not be used as a search criterion.
655
-
size =20# int | The number of audiences per page. Default: 20 Max: 40
656
-
includes_external_public_groups = true # bool | true (default): Get public audiences created in all channels linked to the same bot. false: Get audiences created in the same channel.
657
-
create_route = linebot.v3.audience.AudienceGroupCreateRoute() # AudienceGroupCreateRoute | How the audience was created. If omitted, all audiences are included. `OA_MANAGER`: Return only audiences created with LINE Official Account Manager (opens new window). `MESSAGING_API`: Return only audiences created with Messaging API.
653
+
description ='description_example'# str | The name of the audience(s) to return. You can search for partial matches. This is case-insensitive, meaning AUDIENCE and audience are considered identical. If omitted, the name of the audience(s) will not be used as a search criterion. (optional)
654
+
status = linebot.v3.audience.AudienceGroupStatus() # AudienceGroupStatus | The status of the audience(s) to return. If omitted, the status of the audience(s) will not be used as a search criterion. (optional)
655
+
size =20# int | The number of audiences per page. Default: 20 Max: 40 (optional)
656
+
includes_external_public_groups = true # bool | true (default): Get public audiences created in all channels linked to the same bot. false: Get audiences created in the same channel. (optional)
657
+
create_route = linebot.v3.audience.AudienceGroupCreateRoute() # AudienceGroupCreateRoute | How the audience was created. If omitted, all audiences are included. `OA_MANAGER`: Return only audiences created with LINE Official Account Manager (opens new window). `MESSAGING_API`: Return only audiences created with Messaging API. (optional)
**page** | **int**| The page to return when getting (paginated) results. Must be 1 or higher. |
673
-
**description** | **str**| The name of the audience(s) to return. You can search for partial matches. This is case-insensitive, meaning AUDIENCE and audience are considered identical. If omitted, the name of the audience(s) will not be used as a search criterion. |
674
-
**status** | [**AudienceGroupStatus**](.md)| The status of the audience(s) to return. If omitted, the status of the audience(s) will not be used as a search criterion. |
675
-
**size** | **int**| The number of audiences per page. Default: 20 Max: 40 |
676
-
**includes_external_public_groups** | **bool**| true (default): Get public audiences created in all channels linked to the same bot. false: Get audiences created in the same channel. |
677
-
**create_route** | [**AudienceGroupCreateRoute**](.md)| How the audience was created. If omitted, all audiences are included. `OA_MANAGER`: Return only audiences created with LINE Official Account Manager (opens new window). `MESSAGING_API`: Return only audiences created with Messaging API. |
673
+
**description** | **str**| The name of the audience(s) to return. You can search for partial matches. This is case-insensitive, meaning AUDIENCE and audience are considered identical. If omitted, the name of the audience(s) will not be used as a search criterion. | [optional]
674
+
**status** | [**AudienceGroupStatus**](.md)| The status of the audience(s) to return. If omitted, the status of the audience(s) will not be used as a search criterion. | [optional]
675
+
**size** | **int**| The number of audiences per page. Default: 20 Max: 40 | [optional]
676
+
**includes_external_public_groups** | **bool**| true (default): Get public audiences created in all channels linked to the same bot. false: Get audiences created in the same channel. | [optional]
677
+
**create_route** | [**AudienceGroupCreateRoute**](.md)| How the audience was created. If omitted, all audiences are included. `OA_MANAGER`: Return only audiences created with LINE Official Account Manager (opens new window). `MESSAGING_API`: Return only audiences created with Messaging API. | [optional]
0 commit comments