action appcenter_teams_list_apps { label: "teams_listApps" description: "Returns the apps a team has access to" provider: appcenter method: GET path: "/v0.1/orgs/{org_name}/teams/{team_name}/apps" encoding: json input: { type: "object" properties: { org_name: { type: "string" } team_name: { type: "string" } } required: ["org_name", "team_name"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }