domains to get prices for all domains under the user. Optionally specify years to get pricing for a multi-year renewal.curl --location 'https://customers.coldmailreseller.com/api/v1/integration/domains/renewal-price' \
--header 'cmr-x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"userId": "H8M9JV2S9HMPYFQW393AZHQVD4XM",
"domains": [
"acmecorp.com"
],
"years": 1
}'{
"status": 200,
"message": "Domain renewal prices fetched successfully",
"data": [
{
"domainName": "acmecorp.com",
"domainId": "string",
"years": 1,
"renewalPrice": "14.99",
"expireOn": "2019-08-24T14:15:22.123Z",
"autoRenew": true,
"warning": "string",
"error": "string"
}
],
"actionId": "ACT_7a078272-0fa7-4db4-a85b-c78697dacea1"
}