action appcenter_teams_get_users { label: "teams_getUsers" description: "Returns the users of a team which is owned by an organization" provider: appcenter method: GET path: "/v0.1/orgs/{org_name}/teams/{team_name}/users" 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", "email", "name", "role"] properties: { display_name: { type: "string" description: "The full name of the user. Might for example be first and last name" } email: { type: "string" description: "The email address of the user" } name: { type: "string" description: "The unique name that is used to identify the user." } role: { description: "The role of the user has within the team" enum: ["maintainer", "collaborator"] type: "object" } } } }