Get Template list
GET/templatelist
The Get Template List API allows you to retrieve a list of available templates. This functionality provides an overview of all templates, enabling users to choose from existing templates when creating documents.
Request
Query Parameters
limit number
Possible values: <= 500
Example: 10
skip number
Example: 0
Responses
- 200
- 405
successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
result
template[]
objectId string
Title string
Note string
Folder string
File string
Owner string
Signers
object[]
Name string
createdAt date
updatedAt date
{
"result": [
{
"objectId": "x1Hbnms2Pg",
"Title": "sample template",
"Note": "template note",
"Folder": "folder name",
"File": "https://templateuser.com",
"Owner": "template creator name",
"Signers": [
{
"Name": "joe"
}
],
"createdAt": "2023-10-07T16:49:56.000Z",
"updatedAt": "2023-10-07T16:49:56.000Z"
}
]
}
Invalid API Token!
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "Invalid API token!"
}
Loading...