action signl4_get_subscriptions_subscription_id_prepaid_transactions { label: "Get a subscription's prepaid transactions." provider: signl4 method: GET path: "/subscriptions/{subscriptionId}/prepaidTransactions" encoding: json input: { type: "object" properties: { subscriptionId: { type: "string" } } required: ["subscriptionId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { autoTopUpId: { type: "string" } created: { type: "string" format: "date-time" } createdBy: { type: "string" } credits: { type: "integer" format: "int32" } currency: { type: "string" } modified: { type: "string" format: "date-time" } packageCode: { type: "string" } status: { type: "string" } statusCode: { type: "integer" format: "int32" } subscriptionId: { type: "string" } transactionId: { type: "string" } } additionalProperties: false } } }