POST /messaging/v1/domainverification/push

Overview

Pushes one or more registered domains to all existing child business units of your account (EID).

JSON Parameters

Name Type Description
domainlist Array of strings Required List of registered domains to push to existing child business units. Each child business unit receives all registered domains in this list.

Usage

Required Marketing Cloud Permissions

  • Administration, Access

Required Scope

  • Account Settings, Read and Write
  • From Address Management, Read and Write

Example Request

Host: https://YOUR_SUBDOMAIN.rest.marketingcloudapis.com
POST /messaging/v1/domainverification/push
Content-Type: application/json
Authorization: Bearer YOUR_ACCESS_TOKEN

{
  "domainlist":["exampledomain1.com", "exampledomain2.com"]
}

Example Response

HTTP/1.1 200 OK
[
  {
    "domain": "exampledomain1.com",
    "message": "Success"
  },
  {
    "domain": "exampledomain2.com",
    "message": "Not an Enterprise Account"
  }
]
Last Updated: Jun 8, 2021