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

ParameterData TypeDescription
zuid* LongUnique Zoho User identifier for the user account.
mode* StringThe mode required to add a signature to the account.
signature* ObjectSignature Object with all the individual parameters.
name* StringThe name of the signature you want to create.
content* StringThe content of the signature you want to create.
set StringThe email address you want the signature to be associated to.


* - Mandatory parameters

Request Body (JSON Object)

ParameterData TypeAllowed ValuesDescription
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"
   }
}