action appcenter_organizations_list_administered { label: "organizations_listAdministered" description: "Returns a list organizations in which the requesting user is an admin" provider: appcenter method: GET path: "/v0.1/administeredOrgs" encoding: json output: { type: "object" required: ["organizations"] properties: { organizations: { required: ["created_at", "display_name", "id", "name", "origin", "updated_at"] properties: { avatar_url: { type: "string" description: "The URL to a user-uploaded Avatar image" } created_at: { type: "string" description: "The creation date of this organization" } display_name: { type: "string" description: "The display name of the organization" } id: { type: "string" format: "uuid" description: "The internal unique id (UUID) 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"] } updated_at: { type: "string" description: "The date the organization was last updated at" } } } } } }