action appcenter_analytics_distribution_release_counts { label: "Analytics_DistributionReleaseCounts" description: "Count of total downloads for the provided distribution releases." provider: appcenter method: POST path: "/v0.1/apps/{owner_name}/{app_name}/analytics/distribution/release_counts" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } releases: { type: "array" items: { properties: { distribution_group: { type: "string" format: "string" description: "Distribution group Id.\n" } } } } } required: ["app_name", "owner_name", "releases"] additionalProperties: false } output: { type: "object" required: ["counts"] properties: { counts: { type: "array" items: { type: "object" required: ["release_id", "unique_count", "total_count"] properties: { distribution_group: { type: "string" format: "string" description: "Distribution group queried.\n" } release_id: { type: "string" format: "string" } total_count: { type: "integer" format: "int64" description: "Total count of downloads.\n" } unique_count: { type: "integer" format: "int64" description: "Count of unique downloads against user id.\n" } } } } total: { type: "integer" format: "int64" } } } }