action appcenter_test_get_subscriptions { label: "test_getSubscriptions" description: "Get information about the currently active subscriptions, if any" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/subscriptions" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { type: "object" description: "Subscription information" properties: { active: { type: "boolean" description: "Is the subscription currently active?" } concurrentDevicesLimit: { type: "integer" description: "Customer limits on concurrent devices" } daysLeft: { type: "number" description: "The number of days left in the subscription" } endsAt: { type: "string" format: "dateTime" description: "The date the subscription will end or ended" } id: { type: "string" format: "uuid" description: "Id of the subscription" } runningDevices: { type: "integer" description: "Current device concurrency utilization" } startsAt: { type: "string" format: "dateTime" description: "The date the subscription began" } tier: { type: "object" properties: { name: { type: "string" description: "The name of the tier" } } } } } }