action signl4_get_subscriptions_subscription_id { label: "Get infos of a specific subscription." provider: signl4 method: GET path: "/subscriptions/{subscriptionId}" encoding: json input: { type: "object" properties: { subscriptionId: { type: "string" } } required: ["subscriptionId"] additionalProperties: false } output: { type: "object" properties: { branchId: { type: "string" } country: { type: "string" } currency: { type: "string" } externalAccountId: { type: "string" } id: { type: "string" } name: { type: "string" } nextBilling: { type: "string" format: "date-time" } ownerId: { type: "string" } planCode: { type: "string" } planState: { type: "integer" format: "int32" } referralEnabled: { type: "boolean" } status: { type: "integer" format: "int32" } } additionalProperties: false } }