PUT - To verify DKIM Public Key

 Purpose

This API is used to verify a DKIM public key of a particular domain.

 Request URL 

https://<hostname>/api/organization/<zoid>/domains/<domainName>

Scope

organization.domains

 Request Parameters

ParameterData TypeDescription
zoid*IntegerThe unique Zoho Organization Identifier of your organization. 
domainName*StringName of the domain, for which you want to verify the DKIM public key.

* - Mandatory parameters

  Request Body (JSON Object)

ParameterData TypeAllowed ValuesDescription
mode* String verifyDkimKeyTo verify a DKIM key of the particular domain.
dkimId* LongUnique ID of the DKIM value you would like to verify.The DKIM ID can be fetched by running the get domain details API.

* - Mandatory parameters

 Response Codes

Please refer Response Codes.

Sample Request

Copied{ 
"mode":"verifyDkimKey",
"dkimId":"100000500000888000"    
}

Sample Response

Copied{
 "status": {
 "code": 200,
 "description": "success"
 },
 "data": {
 "dkimstatus": true
 }
}