Verify a Tracking Domain

This API lets you verify a tracking domain.

Request Type

  • POST

Request URL

https://campaigns.zoho.com/emailapi/v1/settings/domain/tracking/verify

Content-Type

application/json

List of Request Body Attributes

ParametersData TypeDescription
tracking_domainStringName of the tracking domain.

List of Response Body Attributes

ParametersData TypeDescription
verify_resultStringShows the status of the verification; whether it is pending, success or a failure.
responseJSON ObjectContains the response details of the API.
codeIntegerSuccess or failure code.
messageStringSuccess or failure message returned by the API.
errorsJSON ArrayContains the error details of the API such as 'code' and 'message'.

Sample Request Payload

Copied{
  "tracking_domain": "zylker.in"
}

Sample Response - Success

Copied{
  "verify_result": "Pending",
  "response": {
    "code": 200109,
    "message": "Tracking domain verification is in progress"
  }
}

Sample Response - Failure

Copied{
  "errors": [
    {
      "code": 400104,
      "message": "No such domain configured"
    }
  ]
}