Configures email forwarding at the domain level, allowing incoming emails to be automatically redirected to a single destination email address.Note: This feature is available for both Google and Outlook .
Enable or update forwarding#
Provide a valid email address in the email field. All applicable mailboxes under the given domain(s) will forward emails to that address.{
"domains": ["example.com"],
"email": "inbox@yourcompany.com"
}
Disable forwarding#
To remove forwarding, use the same domains and do one of the following:{
"domains": ["example.com"],
"email": null
}
Request
Add parameter in header cmr-x-api-key
Example:cmr-x-api-key: ********************
or
Body Params application/json
{
"domains": [
"string"
],
"email": "string"
}
Request Code Samples
curl --location --request POST 'https://customers.coldmailreseller.com/api/v1/integration/domains/add-email-forwarding' \
--header 'cmr-x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"domains": [
"string"
],
"email": "string"
}'
Responses
application/json {
"status": 200,
"message": "Email forwarding will be activated shortly.",
"data": {
"domains": [
"bestpremium.org"
],
"email": "example@company.com"
}
}
Modified at 2026-03-21 08:48:04