Dropbox SignDropbox Sign eSignature API
GET/template/list
List Templates
Returns a list of the Templates that are accessible by you. Take a look at our [search guide](/api/reference/search/) to learn more about querying templates.
Manage accounts, signature requests, templates, teams, bulk sends, file downloads, fax, and event callbacks through the complete Dropbox Sign v3 API; the Hub provides documentation and a local SDK/CLI only.
Request
- operationId
templateList- Server
https://api.hellosign.com/v3- Authentication
- api_key, oauth2
Request parameters
account_id
querystring
Which account to return Templates for. Must be a team member. Use `all` to indicate all team members. Defaults to your account.
example-account-id
page
queryinteger
Which page number of the Template List to return. Defaults to `1`.
1
page_size
queryinteger
Number of objects to be returned per page. Must be between `1` and `100`. Default is `20`.
20
query
querystring
String that includes search terms and/or fields to be used to filter the Template objects.
Responses
200
TemplateListResponseapplication/json
successful operation
Properties: templateslist_infowarnings
4XX
ErrorResponseapplication/json
failed_operation
Properties: error
{
"templates": [
{
"template_id": "example-template-id",
"title": "Example document",
"message": "Example message",
"updated_at": 0,
"is_embedded": false,
"is_creator": false,
"can_edit": false,
"is_locked": false
}
],
"list_info": {
"num_pages": 0,
"num_results": 0,
"page": 0,
"page_size": 0
},
"warnings": [
{
"warning_name": "Example Name"
}
]
}