Deletes a specific DNS record for a domain.Request Body#
| Field | Type | Required | Description |
|---|
recordId | string | Yes | Unique identifier of the DNS record |
domain | string | Yes | Domain name associated with the record |
Request
Add parameter in header cmr-x-api-key
Example:cmr-x-api-key: ********************
or
Body Params application/json
{
"recordId": "323226",
"domain": "expample.com"
}
Request Code Samples
curl --location --request DELETE 'https://customers.coldmailreseller.com/api/v1/integration/dns?userId=BVZGM5TE9BMP3PP0VWGW943RGV1K' \
--header 'cmr-x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"recordId": "323226",
"domain": "expample.com"
}'
Responses
application/json {
"status": 200,
"message": "DNS Record deleted successfully",
"data": null
}
Modified at 2025-10-29 17:06:51