PUT - Update Signature
Purpose
The API is used to update a signature already configured in any user account in an organization. This can only be done by the Admin of that Organization.
Request URL
http://mail.zoho.com/api/accounts/<accountid>
Request Parameters
Parameter | Data Type | Description |
zuid* | Long | Unique Zoho User identifier for the user account. |
mode* | String | The mode required to update signature in an account |
signature* | Object | Signature Object with all the individual parameters. |
name* | String | The updated name of the signature. |
content* | String | The updated content of the signature. |
id* | String | The Signature ID of the signature you want to update. |
set | String | The email address you want the signature to be associated to. |
unset | String | The email address the signature is already associated with. |
* - Mandatory parameters
Request Body (JSON Object)
Parameter | Data Type | Allowed Values | Description |
mode* | String | updateSignature | To update the Signature for the specified account |
* - Mandatory parameters
Response Codes
Please refer Response Codes.
Sample Request
Copied{
"zuid": "111111",
"mode": "addSignature",
"signature": {
"name": "Signature1",
"content": "<p>Rebecca Anderson<br />Marketing Head<br />Zylker</p>",
"set": "rebecca@zylker.com",
"unset": "rebeccaanderson@zylker.com"
}
}