Get template by ID
GET/template/:template_id
Request
Path Parameters
template_id strngrequired
ID of template that needs to be fetched
Header Parameters
x-api-token stringrequired
Example: opensign.xxxx
Responses
- 200
- 404
- 405
successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
code number
result
template
objectId string
Title string
Note string
Folder string
File string
Owner string
Signers
object[]
Name string
{
"code": 200,
"result": {
"objectId": "x1Hbnms2Pg",
"Title": "sample template",
"Note": "template note",
"Folder": "folder name",
"File": "https://templateuser.com",
"Owner": "template creator name",
"Signers": [
{
"Name": "joe bee"
}
]
}
}
Template not found!
- application/json
- Schema
- Example (from schema)
Schema
code number
message string
{
"code": 404,
"message": "Template not found!"
}
Invalid API Token!
- application/json
- Schema
- Example (from schema)
Schema
code number
message string
{
"code": 405,
"message": "Invalid API token!"
}
Loading...