action appcenter_distribution_groups_get_apps { label: "distributionGroups_getApps" description: "Get apps from a distribution group in an org" provider: appcenter method: GET path: "/v0.1/orgs/{org_name}/distribution_groups/{distribution_group_name}/apps" encoding: json input: { type: "object" properties: { distribution_group_name: { type: "string" } org_name: { type: "string" } } required: ["distribution_group_name", "org_name"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }