action rebilly_get_subscription_reactivation_collection { label: "Retrieve a list of reactivations" description: "Retrieve a list of reactivations for all subscriptions." provider: rebilly method: GET path: "/subscription-reactivations" encoding: json output: { type: "array" items: { type: "object" required: ["subscriptionId"] properties: { _links: { type: "array" description: "The links related to resource." items: { type: "object" required: ["rel"] properties: { rel: { type: "string" description: "The link type." enum: ["self"] } } } } cancellationId: { description: "Identifier of the related cancellation." type: "object" } createdTime: { type: "string" format: "date-time" description: "The time of resource creation (when it is posted)." } description: { type: "string" description: "Reactivation reason description in free form." } effectiveTime: { type: "string" format: "date-time" description: "The date from which the service period would start, unless the subscription is canceled but still active.\nIn case the susbcription is still active, the subscription will continue the current service period.\nIf omitted, it will default to the current time.\n" } id: { description: "Reactivation identifier." type: "object" } renewalTime: { type: "string" format: "date-time" description: "The time of the next subscription renewal. If omitted then it is computed from the effective time.\nIf the subscription is canceled but active it is ignored, so the next renewal will happen as scheduled.\n" } subscriptionId: { description: "Identifier of the reactivated subscription." type: "object" } } } } }