action appcenter_apps_get { label: "apps_get" description: "Return a specific app with the given app name which belongs to the given owner." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { required: ["app_secret", "origin", "platform"] type: "object" } }