- Introduction
- OAuth
- API Endpoint
- Quick start with Zoho Sign's API
- Postman collection
- SwaggerHub
- Basic concepts
- Getting started with Zoho Sign's API under 2 minutes
- Signer groups
- Document Management
- POSTCreate document
- PUTUpdate document
- POSTSend document for signature
- POSTCorrect document
- GETGet details of a particular document
- GETGet documents list
- GETDownload PDF
- GETDownload particular PDF file
- GETDownload completion certificate
- GETGet document form data
- POSTRecall Document
- POSTRemind Recipient
- PUTDelete Document
- PUTExtend document
- POSTCreate new Folder
- GETGet folder list
- GETRetrieve field type
- GETGet document type
- POSTCreate new document type
- POSTUpdate document type
- Template Management
- Embedded Signing
- Embedded Sending
- Use Cases
- How-to guides
- Sending a signing request via SMS
- Enforce authentication
- Add fields to your document
- In-Person signing
- Sign documents with digital signature providers
- Sending documents in bulk
- eStamping
- Collecting payments from my recipients
- Adding witness to your envelope
- Manages recipients
- Sending an envelope to a signer group
- Replace signer group with normal recipients
- API error codes
- API limitation
- Security
- Contact details for technical assistance
Update document type
This will help you to update an existing document type.
Arguments
Param | Datatype | Description |
---|---|---|
request_type_name * | String | Document category name |
request_type_description | String | Document category description |
API Endpoint
POST https://sign.zoho.com/api/v1/requesttypes/[RequestTypeId]
Request example
$ curl https://sign.zoho.com/api/v1/requesttypes/2000000495001 \
--header 'Authorization: Zoho-oauthtoken 1000.03xxxxxxxxxxxxxxxxxa5317.dxxxxxxxxxxxxxxxxxfa' \
-X PUT \
-d 'data={
"request_types": {
"request_type_name": "Quote1",
"request_type_description": ""
}
}'
Sample input
data={
"request_types": {
"request_type_name": "Quote1",
"request_type_description": ""
}
}
Response Example
HTTP/1.1 200 OK
Content-Type:application/json;charset=UTF-8
{
"code": 0,
"message": "Document type updated successfully",
"request_types": [
{
"request_type_description": "",
"request_type_name": "Quote1",
"request_type_id": "2000000495001"
}
],
"status": "success"
}
© 2025, Zoho Corporation Pvt. Ltd. All Rights Reserved.