action appcenter_distribution_groups_get_for_org { label: "distributionGroups_getForOrg" description: "Returns a single distribution group in org for a given distribution group name" provider: appcenter method: GET path: "/v0.1/orgs/{org_name}/distribution_groups/{distribution_group_name}" encoding: json input: { type: "object" properties: { distribution_group_name: { type: "string" } org_name: { type: "string" } } required: ["distribution_group_name", "org_name"] additionalProperties: false } output: { required: ["id", "is_public", "name", "origin"] properties: { display_name: { type: "string" description: "The name of the distribution group" } id: { type: "string" format: "uuid" description: "The unique ID of the distribution group" } is_public: { type: "boolean" description: "Whether the distribution group is public" } name: { type: "string" description: "The name of the distribution group used in URLs" } origin: { type: "string" description: "The creation origin of this distribution group" enum: ["appcenter", "hockeyapp"] } } } }