action appcenter_apps_get_for_org_user { label: "apps_getForOrgUser" description: "Get a user apps information from an organization by name" provider: appcenter method: GET path: "/v0.1/orgs/{org_name}/users/{user_name}/apps" encoding: json input: { type: "object" properties: { org_name: { type: "string" } user_name: { type: "string" } } required: ["org_name", "user_name"] additionalProperties: false } output: { type: "array" items: { required: ["app_secret", "platform", "origin"] type: "object" } } }