Get template list
This will help you to fetch the list of templates in your account.
ARGUMENT
Param | Datatype | Description |
---|---|---|
row_count * | Int | No of rows to be retrieved [10,25,50,100] |
start_index * | Int | Start Index |
sort_column * | String | Sort Column |
sort_order * | String | Sort By [ASC/DESC] |
API Root Endpoint
GET https://sign.zoho.com/api/v1/templates
Request example
$ curl -G https://sign.zoho.com/api/v1/templates \
-H "Authorization: Zoho-oauthtoken <Oauth Token>"\
--data-urlencode 'data={"page_context":{"row_count":10,"start_index":1,"search_columns":{},"sort_column":"created_time","sort_order":"DESC"}}'
Response example
HTTP/1.1 200 OK
Content-Type:application/json;charset=UTF-8
{
"code": 0,
"templates": [
{
"owner_email": "v******@***.com",
"created_time": 1522746328987,
"email_reminders": false,
"document_ids": [
{
"document_name": "4page170kbsquared file testrotated.pdf",
"document_size": 174307,
"document_order": "0",
"total_pages": 4,
"document_id": "2000000493029"
}
],
"notes": "",
"reminder_period": 8,
"owner_id": "2000000002002",
"description": "",
"template_name": "Template 1",
"modified_time": 1522747039504,
"is_deleted": false,
"expiration_days": 1,
"is_sequential": true,
"template_id": "2000000493035",
"request_type_name": "Others",
"owner_first_name": "V*******",
"request_type_id": "2000000000135",
"owner_last_name": "",
"actions": [
{
"verify_recipient": true,
"role": "1",
"action_id": "2000000493038",
"action_type": "SIGN",
"private_notes": "Please get back to us for further queries",
"recipient_email": "",
"signing_order": 0,
"verification_type": "EMAIL",
"recipient_name": "",
"recipient_phonenumber": "",
"recipient_countrycode": ""
}
]
}
],
"message": "Template list retrieved successfully",
"page_context": {
"sort_column": "created_time",
"has_more_rows": true,
"start_index": 1,
"total_count": 12,
"sort_order": "DESC",
"row_count": 10
},
"status": "success"
}
Show full
Show less