Skip to content
API DocsDocs

Cancel Subscription

Card Tokenization — Cancel Subscription

2 min readUpdated Mar 27, 2026

DELETE /api/v1/payments/card/recurring/{subscriptionId}

Immediately cancel a subscription. No further charges will be made. Returns 204 No Content on success.

#Headers

HeaderValue
Content-Typeapplication/json
AuthorizationBearer {token} — see Authentication

#Response

Idempotency: The requestId field ensures idempotent processing. If you retry a request with the same requestId, the original response is returned without reprocessing.

#Error Responses

HTTP StatusDescription
400Bad Request — missing or invalid parameters. Check the response body for field-level details.
401Unauthorized — missing, expired, or invalid bearer token. Re-authenticate via POST /api/v1/auth.
404Not Found — the requested resource does not exist.
500Internal Server Error — an unexpected error occurred. Retry with exponential backoff.
curl -X DELETE https://sandbox.api.exirom.com/api/v1/payments/card/recurring/12345 \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_TOKEN" \

#Try It

SandboxTry it
https://sandbox.api.exirom.com/api
Was this helpful?