POST /messaging/v1/domainverification/update

Overview

Update a record in From Address Management.

JSON Parameters

Name Type Description
domain string Required The root domain of the email address.
isSendable boolean Determines whether or not the email address is sendable.

Usage

Required Marketing Cloud Permissions

  • Administration, Access

Required Scope

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

Example Request 1 (Update Email Address)

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

[  
   {  
      "EmailAddress":"test@test.com",
      "IsSendable":"false"
   },
   {  
      "EmailAddress":"noreply.salesforce.com",
      "IsSendable":"false"
   }
]

Example Response

HTTP/1.1 200 OK
{
    "2 records successfully updated!"
}
Last Updated: Jun 8, 2021