action appcenter_releases_get_public_groups_for_release_by_hash { label: "releases_getPublicGroupsForReleaseByHash" description: "Get all public distribution groups that a given release has been distributed to" provider: appcenter method: GET path: "/v0.1/public/sdk/apps/{app_secret}/releases/{release_hash}/public_distribution_groups" encoding: json input: { type: "object" properties: { app_secret: { type: "string" } release_hash: { type: "string" } } required: ["app_secret", "release_hash"] additionalProperties: false } output: { type: "array" items: { required: ["id"] properties: { id: { type: "string" format: "uuid" description: "The id of the distribution group" } } } } }