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