action appcenter_azure_subscription_list_for_user { label: "azureSubscription_listForUser" description: "Returns a list of azure subscriptions for the user" provider: appcenter method: GET path: "/v0.1/azure_subscriptions" encoding: json 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" } } } } }