action rebilly_get_subscription_collection { label: "Retrieve a list of orders" description: "Retrieve a list of orders.\n" provider: rebilly method: GET path: "/subscriptions" encoding: json output: { type: "array" items: { type: "object" properties: { orderType: { type: "string" description: "Specifies the type of order, a subscription or a one-time purchase.\n" enum: ["subscription-order", "one-time-order"] } } } } }