Recover subscription
Reactivate a previously cancelled subscription. Recovery is only possible before the cancellation takes full effect. Recovery is possible for both cancellation modes:
- After immediate cancellation, recovery initiates an immediate recurring charge (regular sale IPN will be sent).
- After delayed cancellation, recovery undoes the cancellation call itself (no IPN is sent).
curl --request PUT \
--url https://api.centrobill.com/subscription/{id}/recover \
--header 'Authorization: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"reason": "Customer changed their mind"
}'Request fields:
| Field | Required | Description |
|---|---|---|
reason | No | Reason for recovery. Max 255 characters |
subscription.id | Yes | Subscription ID |
A successful response returns the updated subscription object with status: active and cancelDate: null.
Updated 20 days ago
Did this page help you?
