Cancels an active subscription and deletes the associated workspace immediately. Either domain or subscription ID must be provided.Request Body#
| Field | Type | Required | Description |
|---|
subscriptionId | string | No* | Unique identifier of the subscription |
domain | string | No* | Domain associated with the subscription |
*Note: Either subscriptionId or domain must be provided. Request
Add parameter in header cmr-x-api-key
Example:cmr-x-api-key: ********************
or
Body Params application/json
{
"domain": "clientapp.co"
}
Request Code Samples
curl --location --request POST 'https://customers.coldmailreseller.com/api/v1/integration/subscriptions/cancel' \
--header 'cmr-x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"domain": "clientapp.co"
}'
Responses
application/json {
"status": 200,
"message": "Subscription will be cancelled successfully",
"data": null
}
Modified at 2026-01-29 20:02:09