action appcenter_analytics_get_audience { label: "Analytics_GetAudience" description: "Gets audience definition." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/analytics/audiences/{audience_name}" encoding: json input: { type: "object" properties: { app_name: { type: "string" } audience_name: { type: "string" format: "string" } owner_name: { type: "string" } } required: ["app_name", "audience_name", "owner_name"] additionalProperties: false } output: { description: "Audience with details." properties: { custom_properties: { type: "object" description: "Custom properties used in the definition." } enabled: { type: "boolean" } estimated_total_count: { type: "integer" format: "int64" description: "Estimated total audience size." } timestamp: { type: "string" format: "date-time" description: "Date the audience was last refreshed." } } } }