action appcenter_apps_list_for_org { label: "apps_listForOrg" description: "Returns a list of apps for the organization" provider: appcenter method: GET path: "/v0.1/orgs/{org_name}/apps" encoding: json input: { type: "object" properties: { org_name: { type: "string" } } required: ["org_name"] additionalProperties: false } output: { type: "array" items: { required: ["app_secret", "platform", "origin"] type: "object" } } }