action appcenter_organizations_list { label: "organizations_list" description: "Returns a list of organizations the requesting user has access to" provider: appcenter method: GET path: "/v0.1/orgs" encoding: json output: { type: "array" items: { required: ["display_name", "name", "origin"] properties: { display_name: { type: "string" description: "The display name of the organization" } name: { type: "string" description: "The slug name of the organization" } origin: { type: "string" description: "The creation origin of this organization" enum: ["appcenter", "hockeyapp"] } } } } }