Delete a Tracking Domain

This API allows you to delete a tracking domain. Once a tracking domain is deleted, you can't restore it. You have to add it again and verify it.

Request Type

  • DELETE

Request URL

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

Content-Type

application/json

List of Request Body Attributes

ParametersData TypeDescription
tracking_domainStringName of the tracking domain.

List of Response Body Attributes

ParametersData TypeDescription
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{
  "response": {
    "code": 200106,
    "message": "Tracking domain deleted successfully"
  }
}

Sample Response - Failure

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