- Introduction
- Concepts
- Authentication
- Webhooks
- Envelope lifecycle
- Error handling
- Contact
- Document
- Envelope
- Get envelope certificate fileGET
- Process envelope certificatePOST
- Get envelopeGET
- Update envelopePUT
- Remove envelopeDELETE
- Create envelopePOST
- List available envelope ownersGET
- Change envelope user account ownerPOST
- Rename envelopePOST
- Move envelopePOST
- Publish envelopePOST
- Unschedule envelope publicationPOST
- Hold envelopePOST
- Cancel envelopePOST
- Restore envelopePOST
- Manual reinvite to review envelopePOST
- Create signature linkGET
- Template
- Vault
Create document from template
POST
https://api.signater.com/v1/ecm/documents/templates
Document
Last modified:2025-03-29 12:47:42
Request
Authorization
Add parameter in header
x-api-token
Example:
x-api-token: ********************
Body Params application/json
Request to create document from template
templateId
string <uuid>
required
>= 1 characters
name
string | null
optional
<= 200 characters
privateDescription
string | null
optional
<= 4000 characters
publicDescription
string | null
optional
<= 4000 characters
language
enum<string> | enum<null>
optional
Allowed values:
EnUsPtBr
markupOrientation
enum<string> | enum<null>
optional
Allowed values:
NoneBottomTopLeftRight
fields
array[object (CreateDocumentFromTemplateFieldApiRequest) {2}] | null
optional
fieldId
string <uuid>
required
>= 1 characters
value
string | null
optional
<= 4000 characters
Example
{
"templateId": "99f42c60-af6d-4730-bc3b-1a7a81707129",
"name": "Example file",
"privateDescription": "Example private description",
"publicDescription": "Example public description",
"language": "EnUs",
"markupOrientation": "Bottom",
"fields": [
{
"fieldId": "43b16889-acce-49d1-87aa-81c4ac99f89a",
"value": "Example field value"
}
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.signater.com/v1/ecm/documents/templates' \
--header 'Content-Type: application/json' \
--data-raw '{
"templateId": "99f42c60-af6d-4730-bc3b-1a7a81707129",
"name": "Example file",
"privateDescription": "Example private description",
"publicDescription": "Example public description",
"language": "EnUs",
"markupOrientation": "Bottom",
"fields": [
{
"fieldId": "43b16889-acce-49d1-87aa-81c4ac99f89a",
"value": "Example field value"
}
]
}'
Responses
🟢201Created
application/json
Body
id
string <uuid>
optional
fileName
string | null
optional
name
string | null
optional
privateDescription
string | null
optional
publicDescription
string | null
optional
pageSizes
array[object (CreateDocumentFromTemplatePageSizeApiResponse) {3}] | null
optional
page
integer <int32>
optional
width
number <double>
optional
height
number <double>
optional
Example
{
"id": "b07b4683-2b97-4918-b7e1-690924e914cc",
"fileName": "FileName.pdf",
"name": "Name",
"privateDescription": "Private Description",
"publicDescription": "Public Description",
"pageSizes": [
{
"page": 1,
"width": 100,
"height": 200
}
]
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
Modified at 2025-03-29 12:47:42