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

ParameterData TypeDescription
zuid* Long

Unique Zoho User identifier for the user account.

mode* String The mode required to update signature in an account
signature* ObjectSignature Object with all the individual parameters.
name* StringThe updated name of the signature.
content* StringThe updated content of the signature.
id* StringThe Signature ID of the signature you want to update.
set StringThe email address you want the signature to be associated to.
unset StringThe email address the signature is already associated with. 


* - Mandatory parameters

Request Body (JSON Object)

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