Create template
POST/createtemplate
The Template Creation API allows users to create customizable templates, which serve as blueprints for generating documents with predefined structures. Upon successful template creation, the API returns a unique templateId that can be used to generate documents based on the specified template.
Request
Header Parameters
x-api-token stringrequired
Example: opensign.xxxx
- application/json
Body
Name string
Note string
Description string
URL string
signers signers[]
folderId string
Responses
- 200
- 405
Template created successfully!
- application/json
- Schema
- Example (from schema)
Schema
code number
message string
result
object
objectId number
url string
{
"code": 200,
"message": "Template created successfully!",
"result": {
"objectId": 0,
"url": "https://exampleurl.com"
}
}
Invalid API Token!
- application/json
- Schema
- Example (from schema)
Schema
code number
message string
{
"code": 405,
"message": "Invalid API token!"
}
Loading...