action appcenter_teams_list_all { label: "teams_listAll" description: "Returns the list of all teams in this org" provider: appcenter method: GET path: "/v0.1/orgs/{org_name}/teams" encoding: json input: { type: "object" properties: { org_name: { type: "string" } } required: ["org_name"] additionalProperties: false } output: { type: "array" items: { required: ["id", "name", "display_name"] properties: { description: { type: "string" description: "The description of the team" } display_name: { type: "string" description: "The display name of the team" } id: { type: "string" format: "uuid" description: "The internal unique id (UUID) of the team." } name: { type: "string" description: "The name of the team" } } } } }