- 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
Retrieve field type
This will help you to retrieve field type.
API Endpoint
GET https://sign.zoho.com/api/v1/fieldtypes
Request example
$ curl https://sign.zoho.com/api/v1/fieldtypes \
--header 'Authorization: Zoho-oauthtoken 1000.03xxxxxxxxxxxxxxxxxa5317.dxxxxxxxxxxxxxxxxxfa' \
Response example
HTTP/1.1 200 OK
Content-Type:application/json;charset=UTF-8
{
"field_types": [
{
"field_type_id": "2000000000137",
"field_category": "checkbox",
"is_mandatory": false,
"field_type_name": "Checkbox"
},
{
"field_type_id": "2000000000139",
"field_category": "radiogroup",
"is_mandatory": false,
"field_type_name": "Radiogroup"
},
{
"field_type_id": "2000000000141",
"field_category": "image",
"is_mandatory": true,
"field_type_name": "Signature"
},
{
"field_type_id": "2000000000143",
"field_category": "image",
"is_mandatory": true,
"field_type_name": "Initial"
},
{
"field_type_id": "2000000000147",
"field_category": "textfield",
"is_mandatory": false,
"field_type_name": "Textfield"
},
{
"field_type_id": "2000000000149",
"field_category": "textfield",
"is_mandatory": true,
"field_type_name": "Email"
},
{
"field_type_id": "2000000000151",
"field_category": "datefield",
"is_mandatory": true,
"field_type_name": "Date"
},
{
"field_type_id": "2000000000153",
"field_category": "textfield",
"is_mandatory": true,
"field_type_name": "Name"
},
{
"field_type_id": "2000000000155",
"field_category": "textfield",
"is_mandatory": true,
"field_type_name": "Company"
},
{
"field_type_id": "2000000000157",
"field_category": "textfield",
"is_mandatory": true,
"field_type_name": "Jobtitle"
}
],
"code": 0,
"message": "Field types retrieved successfully",
"status": "success"
}
Show full
Show less
© 2025, Zoho Corporation Pvt. Ltd. All Rights Reserved.