action appcenter_azure_subscription_link_for_app { label: "azureSubscription_linkForApp" description: "Link azure subscription to an app" provider: appcenter method: POST path: "/v0.1/apps/{owner_name}/{app_name}/azure_subscriptions" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } subscription_id: { type: "string" format: "uuid" description: "The azure subscription id" } } required: ["app_name", "owner_name", "subscription_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }