Delete User Signature

Purpose

This API is used to delete a specific signature for a particular user.

OAuth Scope

Use the scope

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

to generate the Authtoken.

ALL - Full access to the accounts

DELETE - Delete a user's signature.

Request URL 

Method: DELETE

https://mail.zoho.com/api/accounts/signature

Query Parameters

  • id* long
    • This is a unique key used to identify the specific signature.

 

* - Mandatory parameter

Response Codes

Refer here for the response codes and their meaning.

Sample Request

Copiedcurl "https://mail.zoho.com/api/accounts/signature?id=2442552000000167007" \
-X DELETE \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Authorization:Zoho-oauthtoken ***"

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"
    }
}