Delete Admin-Added User Signature

Purpose

This API enables administrators to delete admin-added signature for a specific user account.

Note:

This API does not allow administrators to delete organization-level signatures.

OAuth Scope

Use the scope

Use admin authentication:

ZohoMail.organization.accounts.ALL (or) ZohoMail.organization.accounts.DELETE

to generate the Authtoken.

ALL - Full access to the accounts.

DELETE - Delete a user signature.

Request URL 

Method: DELETE

https://mail.zoho.com/api/organization/{zoid}/accounts/{zuid}/signature

Path Parameters

  • zoid* long
    • This parameter denotes the unique identifier for the Zoho organization.
    • This value can be retrieved using the GET Organization Details API.
  • zuid* long
    • This parameter denotes the unique identifier for each user in an organization.
    • This value can be retrieved using the GET Org User Details API.

Request Body (JSON Object)

  • id* long
    • Specifies the unique key of the signature to be deleted.

 

* - Mandatory parameter

Response Codes

Refer here for the response codes and their meaning.

Sample Request

Copiedcurl "https://mail.zoho.com/api/organization/1234567890/accounts/2468013579/signature" \
-X DELETE \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Authorization:Zoho-oauthtoken ****************" \
-d '{
  "id": 20482000004714000
}'

Sample Success Response

Copied{
  "status": {
    "code": 200,
    "description": "success"
  }
}

Sample Failure Response

Copied{
  "status": {
    "code": 500,
    "description": "Internal Error"
  },
  "data": {
    "moreInfo": "The input passed is invalid"
  }
}