action appcenter_apps_transfer_to_org { label: "apps_transferToOrg" description: "Transfers ownership of an app to a new organization" provider: appcenter method: POST path: "/v0.1/apps/{owner_name}/{app_name}/transfer_to_org" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { required: ["created_at", "display_name", "id", "name", "origin", "updated_at"] properties: { avatar_url: { type: "string" description: "The URL to a user-uploaded Avatar image" } created_at: { type: "string" description: "The creation date of this organization" } display_name: { type: "string" description: "The display name of the organization" } id: { type: "string" format: "uuid" description: "The internal unique id (UUID) of the organization." } name: { type: "string" description: "The slug name of the organization" } origin: { type: "string" description: "The creation origin of this organization" enum: ["appcenter", "hockeyapp"] } updated_at: { type: "string" description: "The date the organization was last updated at" } } } }