action appcenter_apps_list { label: "apps_list" description: "Returns a list of apps" provider: appcenter method: GET path: "/v0.1/apps" encoding: json input: { type: "object" properties: { "$orderBy": { type: "string" enum: ["display_name", "name"] } } additionalProperties: false } output: { type: "array" items: { required: ["app_secret", "platform", "origin"] type: "object" } } }