Retrieve a subscription order reactivation

Retrieves a subscription order reactivation with a specified ID.

SecurityAPI Key: SecretApiKey or HTTP: JWT
Request
path Parameters
id
required
string <= 50 characters ^[@~\-\.\w]+$

ID of the resource.

get
/subscription-reactivations/{id}
Request samples
const subscription = await api.subscriptionReactivations.get({id: 'foobar-001'});
console.log(subscription.fields.description);
Responses

200

Reactivation retrieved.

Response Schema: application/json
id
string <= 50 characters

ID of the reactivation.

subscriptionId
required
string <= 50 characters

ID of the reactivated subscription.

cancellationId
string <= 50 characters

ID of the related cancellation.

description
string or null <= 255 characters

Description of the reactivation reason in free form.

renewalTime
string <date-time>

Date and time of the next subscription renewal. If this field is omitted, this value is computed from the effectiveTime field.

If the subscription is canceled but still active, it is ignored and the next renewal occurs as scheduled.

createdTime
string <date-time> (CreatedTime)

Date and time which is set automatically when the resource is created.

updatedTime
string <date-time> (UpdatedTime)

Date and time which updates automatically when the resource is updated.

Array of objects (SelfLink)

Related links.

401

Unauthorized access. Invalid credentials used.

403

Access forbidden.

404

Resource not found.

Response samples
application/json
{ "id": "ord_rct_0YVJ62AF5XCFCA6EBFAAA3Z7E0", "subscriptionId": "ord_01GYJPRKHBD6ZYHH897QCJMBS4", "cancellationId": "ord_cnl_0YVJ5XVQM9CDP8248ZQX0RDMKV", "description": "string", "renewalTime": "2019-08-24T14:15:22Z", "createdTime": "2019-08-24T14:15:22Z", "updatedTime": "2019-08-24T14:15:22Z", "_links": [ ] }