Renews active subscriptions based on the provided subscription IDs.Request Body#
| Field | Type | Required | Description |
|---|
subscriptionIds | array | Yes | Array of subscription IDs to be renewed |
Request
Add parameter in header cmr-x-api-key
Example:cmr-x-api-key: ********************
or
Body Params application/json
{
"subscriptionIds": [
"6ZHR985PGP456XG8HCYHF919YVS6",
"0BRBX9FGE4M77TGG14C3JYN4PMJT"
]
}
Request Code Samples
curl --location --request POST 'https://customers.coldmailreseller.com/api/v1/integration/subscriptions/renew-subscriptions' \
--header 'cmr-x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"subscriptionIds": [
"6ZHR985PGP456XG8HCYHF919YVS6",
"0BRBX9FGE4M77TGG14C3JYN4PMJT"
]
}'
Responses
application/json {
"status": 200,
"message": "Subscriptions added for renewal. Please ensure you have enough balance to renew the subscriptions.",
"data": null
}
Modified at 2025-10-29 17:08:44