action appcenter_azure_subscription_list_for_app { label: "azureSubscription_listForApp" description: "Returns a list of azure subscriptions for the app" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/azure_subscriptions" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { type: "array" items: { required: ["subscription_id", "tenant_id", "subscription_name"] properties: { is_billable: { type: "boolean" description: "If the subscription can be used for billing" } is_billing: { type: "boolean" description: "If the subscription is used for billing" } is_microsoft_internal: { type: "boolean" description: "If the subscription is internal Microsoft subscription" } subscription_id: { type: "string" format: "uuid" description: "The azure subscription id" } subscription_name: { type: "string" description: "The name of the azure subscription" } tenant_id: { type: "string" format: "uuid" description: "The tenant id of the azure subscription belongs to" } } } } }