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
| Header | Value |
|---|---|
Content-Type | application/json |
Authorization | Bearer {token} — see Authentication |
#Response
Idempotency: The
requestIdfield ensures idempotent processing. If you retry a request with the samerequestId, the original response is returned without reprocessing.
#Error Responses
| HTTP Status | Description |
|---|---|
400 | Bad Request — missing or invalid parameters. Check the response body for field-level details. |
401 | Unauthorized — missing, expired, or invalid bearer token. Re-authenticate via POST /api/v1/auth. |
404 | Not Found — the requested resource does not exist. |
500 | Internal 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?