action appcenter_distribution_groups_list_for_org { label: "distributionGroups_listForOrg" description: "Returns a list of distribution groups in the org specified" provider: appcenter method: GET path: "/v0.1/orgs/{org_name}/distribution_groups" encoding: json input: { type: "object" properties: { org_name: { type: "string" } } required: ["org_name"] additionalProperties: false } output: { type: "array" items: { required: ["id", "name", "origin", "is_public"] 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"] } } } } }