action appcenter_analytics_list_audiences { label: "Analytics_ListAudiences" description: "Get list of audiences." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/analytics/audiences" encoding: json input: { type: "object" properties: { app_name: { type: "string" } include_disabled: { type: "boolean" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { description: "List of audiences." required: ["values"] properties: { nextLink: { type: "string" } values: { type: "array" description: "List of audiences." items: { description: "Audience definition." properties: { definition: { type: "string" description: "Audience definition in OData format." } description: { type: "string" description: "Audience description." } estimated_count: { type: "integer" format: "int64" description: "Estimated audience size." } name: { type: "string" description: "Audience name." } state: { type: "string" description: "Audience state." enum: ["Calculating", "Ready", "Disabled"] } } } } } } }