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:

FieldRequiredDescription
reasonNoReason for recovery. Max 255 characters
subscription.idYesSubscription ID

A successful response returns the updated subscription object with status: active and cancelDate: null.


Did this page help you?