Create Document from Template
POST/createdocument/:template_id
The Create Document from template API allows you to generate new documents by just providing template_id instead of uploading a new file(in the form of base64 or binary) every time you need to create a document. Templates for repeatedly used files can be created from user interface at Debug UI or using the Create Template API.
You can provide default value for all widgets based on their name all widgets support except signature, stamp, initials, image.
{
"name": "email",
"readonly": false,
"default": "email@example.com"
}
- name
{
"name": "name",
"readonly": false,
"default": "joe"
}
- job Title
{
"name": "job title",
"readonly": false,
"default": "ceo"
}
- company
{
"name": "company",
"readonly": false,
"default": "example pvt ltd"
}
- date
{
"name": "date",
"readonly": false,
"default": "11-05-2025"
}
- textbox
{
"name": "textbox",
"readonly": false,
"default": "my text"
}
- checkbox
{
"name": "checkbox",
"readonly": false,
"default": ["option-2"]
}
- default: You can have one or more than one value that needs to be selected by default.
- dropdown
{
"name": "dropdown",
"readonly": false,
"default": "option1"
}
- radio button
{
"name": "radio",
"readonly": false,
"default": "option1"
}
Request
Responses
- 200
- 400
- 405
Document created successfully!
If you haven't add widgets and signers in template or not provide signers along with their roles in body
Invalid API Token!