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
|[**getAudience**](AudiencesApi.md#getAudience)|**GET** /spaces/{spaceId}/audiences/{id} | Get Audience |
10
10
|[**getAudiencePreview**](AudiencesApi.md#getAudiencePreview)|**GET** /spaces/{spaceId}/audiences/previews/{id} | Get Audience Preview |
11
+
|[**getAudienceScheduleFromSpaceAndAudience**](AudiencesApi.md#getAudienceScheduleFromSpaceAndAudience)|**GET** /spaces/{spaceId}/audiences/{id}/schedules/{scheduleId} | Get Audience Schedule from Space And Audience |
11
12
|[**listAudienceConsumersFromSpaceAndAudience**](AudiencesApi.md#listAudienceConsumersFromSpaceAndAudience)|**GET** /spaces/{spaceId}/audiences/{id}/audience-references | List Audience Consumers from Space And Audience |
13
+
|[**listAudienceSchedulesFromSpaceAndAudience**](AudiencesApi.md#listAudienceSchedulesFromSpaceAndAudience)|**GET** /spaces/{spaceId}/audiences/{id}/schedules | List Audience Schedules from Space And Audience |
12
14
|[**listAudiences**](AudiencesApi.md#listAudiences)|**GET** /spaces/{spaceId}/audiences | List Audiences |
13
15
|[**removeAudienceFromSpace**](AudiencesApi.md#removeAudienceFromSpace)|**DELETE** /spaces/{spaceId}/audiences/{id} | Remove Audience from Space |
14
16
|[**updateAudienceForSpace**](AudiencesApi.md#updateAudienceForSpace)|**PATCH** /spaces/{spaceId}/audiences/{id} | Update Audience for Space |
Returns the Audience by id and spaceId. • This endpoint is in **Beta** testing. Please submit any feedback by sending an email to [email protected]. • In order to successfully call this endpoint, the specified Workspace needs to have the Audience feature enabled. Please reach out to your customer success manager for more information. The rate limit for this endpoint is 100 requests per minute, which is lower than the default due to access pattern restrictions. Once reached, this endpoint will respond with the 429 HTTP status code with headers indicating the limit parameters. See [Rate Limiting](/#tag/Rate-Limits) for more information.
176
+
Returns the Audience by id and spaceId. Supports including audience schedules via `?include=schedules`. • This endpoint is in **Beta** testing. Please submit any feedback by sending an email to [email protected]. • In order to successfully call this endpoint, the specified Workspace needs to have the Audience feature enabled. Please reach out to your customer success manager for more information. The rate limit for this endpoint is 100 requests per minute, which is lower than the default due to access pattern restrictions. Once reached, this endpoint will respond with the 429 HTTP status code with headers indicating the limit parameters. See [Rate Limiting](/#tag/Rate-Limits) for more information.
Returns the schedule for the given audience and scheduleId. • This endpoint is in **Alpha** testing. Please submit any feedback by sending an email to [email protected]. • In order to successfully call this endpoint, the specified Workspace needs to have the Audience feature enabled. Please reach out to your customer success manager for more information.
Returns the list of schedules for the given audience. • This endpoint is in **Alpha** testing. Please submit any feedback by sending an email to [email protected]. • In order to successfully call this endpoint, the specified Workspace needs to have the Audience feature enabled. Please reach out to your customer success manager for more information.
Returns Audiences by spaceId. • This endpoint is in **Beta** testing. Please submit any feedback by sending an email to [email protected]. • In order to successfully call this endpoint, the specified Workspace needs to have the Audience feature enabled. Please reach out to your customer success manager for more information. The rate limit for this endpoint is 25 requests per minute, which is lower than the default due to access pattern restrictions. Once reached, this endpoint will respond with the 429 HTTP status code with headers indicating the limit parameters. See [Rate Limiting](/#tag/Rate-Limits) for more information.
561
+
Returns Audiences by spaceId. Supports including audience schedules via `?include=schedules`. • This endpoint is in **Beta** testing. Please submit any feedback by sending an email to [email protected]. • In order to successfully call this endpoint, the specified Workspace needs to have the Audience feature enabled. Please reach out to your customer success manager for more information. The rate limit for this endpoint is 25 requests per minute, which is lower than the default due to access pattern restrictions. Once reached, this endpoint will respond with the 429 HTTP status code with headers indicating the limit parameters. See [Rate Limiting](/#tag/Rate-Limits) for more information.
ListAudiencesPaginationInput pagination =newListAudiencesPaginationInput(); // ListAudiencesPaginationInput | Information about the pagination of this response. [See pagination](https://docs.segmentapis.com/tag/Pagination/#section/Pagination-parameters) for more info. This parameter exists in alpha.
585
+
String include ="schedules"; // String | Additional resource to include, support schedules only. This parameter exists in alpha.
429
586
try {
430
-
ListAudiences200Response result = apiInstance.listAudiences(spaceId, pagination);
587
+
ListAudiences200Response result = apiInstance.listAudiences(spaceId, pagination, include);
431
588
System.out.println(result);
432
589
} catch (ApiException e) {
433
590
System.err.println("Exception when calling AudiencesApi#listAudiences");
|**pagination**|[**ListAudiencesPaginationInput**](.md)| Information about the pagination of this response. [See pagination](https://docs.segmentapis.com/tag/Pagination/#section/Pagination-parameters) for more info. This parameter exists in alpha. |[optional]|
607
+
|**include**|**String**| Additional resource to include, support schedules only. This parameter exists in alpha. |[optional][enum: schedules]|
0 commit comments