action appcenter_apps_get_teams { label: "apps_getTeams" description: "Returns the details of all teams that have access to the app." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/teams" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }