action appcenter_organizations_get { label: "organizations_get" description: "Returns the details of a single organization" provider: appcenter method: GET path: "/v0.1/orgs/{org_name}" encoding: json input: { type: "object" properties: { org_name: { type: "string" } } required: ["org_name"] additionalProperties: false } output: { 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" } } } }