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
Parameters | Data Type | Description |
tracking_domain | String | Name of the tracking domain. |
List of Response Body Attributes
Parameters | Data Type | Description |
verify_result | String | Shows the status of the verification; whether it is pending, success or a failure. |
response | JSON Object | Contains the response details of the API. |
code | Integer | Success or failure code. |
message | String | Success or failure message returned by the API. |
errors | JSON Array | Contains 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"
}
]
}