PUT - Add DKIM Details
Purpose
This API is used to configure the DKIM details for an organization. DKIM is an authentication method that is used to validate the authenticity of emails.
Request URL
https://mail.zoho.com/api/organization/<zoid>/domains/<domainName>
Request Parameters
| Parameter | Data Type | Description |
| zoid* | Long | The unique identifier used for the organization |
| domainName* | String | The name of the domain for which you'd like to configure the DKIM |
* - Mandatory parameters
Request Body (JSON Parameters)
| Parameter | Data Type | Allowed Values | Description |
| mode* | String | addDkimDetail | To configure DKIM for the domain |
| selector* | String | - | The selector name that you would like to give for the DKIM configuration |
| hashType | String | The encryption type that you want to set for the public key | |
| isDefault | Boolean | true; false | Whether the added selector is the default for the organization |
* - Mandatory parameters
Response Codes
Please refer Response Codes.
Sample Request
CopiedSample URL:
https://mail.zoho.com/api/organization/123456789/domains/zylker.com
Sample Request Body:
{
"mode" : "addDkimDetail",
"selector" : "zoho"
}