PUT - Update Reply To Address of the User
Purpose
The API is used to update the Reply-To Address of the account. This can be done by the Admin for a user or by the user for himself.
Request URL
Using Admin Authentication:
http://<hostname>/api/organization/<zoid>/accounts/<accountid>
Using User Authentication:
http ://<hostname>/api/accounts/<accountid>
Request Parameters
Parameter | Data Type | Description |
zuid* | Integer | zuid - The unique Zoho User Identifier for the organization |
replyToAddress* | String | replyToAddress - The Email address to be updated as the Reply-To address for the account. |
* - Mandatory parameters
Request Body (JSON Object)
Parameter | Data Type | Allowed Values | Description |
mode* | String | updateReplyTo | Update the provided Reply-To address as the Reply to address for the account. |
* - Mandatory parameters
Response Codes
Please refer Response Codes.
Sample Request
Copied{
"zuid" : "1111111",
"mode" : "updateReplyToStatus",
"replyTo" : "marketing@zylker.com"
}
Sample Request (Using User Authentication)
Copied{
"mode" : "updateReplyToStatus",
"replyTo" : "marketing@zylker.com"
}