Skip to main content
Delete document

Deleting a document moves it to trash.

Arguments

Params

Datatype

Explanation

recall_inprogress 

Boolean

"True" when the document is inprogress 
reason 

String

Reason for recalling the document

 

API Endpoint

https://sign.zoho.com/api/v1/requests/[Request ID]/delete

Request example

curl --location --request PUT 'https://sign.zoho.com/api/v1/requests/:Request_Id/delete' \
--header 'Authorization: Zoho-oauthtoken 1000.03xxxxxxxxxxxxxxxxxa5317.dxxxxxxxxxxxxxxxxxfa' \
--form 'recall_inprogress="true"' \
--form 'reason="recall reason"'

Response example

HTTP/1.1 200 OK
Content-Type:application/json;charset=UTF-8
{
    "code": 0,
    "message": "Document deleted successfully",
    "status": "success"
}
Request Demo