Get template by ID
GET/template/:template_id
The Get Template API allows you to retrieve details about a specific template. Templates serve as blueprints for creating documents with predefined structures.
Request
Path Parameters
template_id strngrequired
ID of template that needs to be fetched
Responses
- 200
- 404
- 405
successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
objectId string
Title string
Note string
Folder string
File string
Owner string
Signers
object[]
Name string
createdAt date
updatedAt date
{
"objectId": "x1Hbnms2Pg",
"Title": "sample template",
"Note": "template note",
"Folder": "folder name",
"File": "https://templateuser.com",
"Owner": "template creator name",
"Signers": [
{
"Name": "joe bee"
}
],
"createdAt": "2023-10-07T16:49:56.000Z",
"updatedAt": "2023-10-07T16:49:56.000Z"
}
Template not found!
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "Template not found!"
}
Invalid API Token!
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "Invalid API token!"
}
Loading...