PUT - Add Signature
Purpose
The API is used to add Signature to 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 add a signature to the account. |
| signature* | Object | Signature Object with all the individual parameters. |
| name* | String | The name of the signature you want to create. |
| content* | String | The content of the signature you want to create. |
| set | String | The email address you want the signature to be associated to. |
* - Mandatory parameters
Request Body (JSON Object)
| Parameter | Data Type | Allowed Values | Description |
| mode* | String | addSignature | To add 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 />Senior Marketer<br />Zylker</p>",
"set": "rebecca@zylker.com"
}
}