- 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 envelope
POST
https://api.signater.com/v1/ecm/envelopes
Envelope
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
vaultId
string <uuid>
required
>= 1 characters
name
string
required
>= 2 characters<= 200 characters
privateDescription
string | null
optional
<= 4000 characters
publicDescription
string | null
optional
<= 4000 characters
message
string | null
optional
<= 4000 characters
reviewReminder
boolean
required
expiresAtUtc
string <date-time> | null
optional
expirationReminder
boolean
optional
toBePublishedAtUtc
string <date-time> | null
optional
language
enum<string>
required
Allowed values:
EnUsPtBr
markupOrientation
enum<string>
required
Allowed values:
NoneBottomTopLeftRight
signInOrder
boolean
required
signers
array[object (CreateEnvelopeSignerApiRequest) {19}] | null
optional
name
string
required
>= 2 characters<= 200 characters
email
string | null
optional
Match pattern:
^([\w\.\-]+)@([\w\-]+)((\.(\w){2,3})+)$
role
enum<string>
required
Allowed values:
SignApproveRecognizeTestifyConfirmReceivingEndorseInBlackEndorseInWhiteConfirm
title
string | null
optional
<= 200 characters
shouldEnforceEmailValidation
boolean
optional
shouldEnforceSmsValidation
boolean
required
shouldEnforceWhatsAppValidation
boolean
required
shouldEnforcePixValidation
boolean
required
shouldEnforceGeolocationValidation
boolean
required
shouldAllowCustomDigitalCertificateValidation
boolean
required
shouldEnforceCustomDigitalCertificateValidation
boolean
required
phoneIdd
integer <int32> | null
optional
phoneNumber
string | null
optional
documentType
enum<string> | enum<null>
optional
Allowed values:
GenericIdentificationBrazilianCpf
documentValue
string | null
optional
shouldEnforcePasscodeValidation
boolean
required
passcode
string | null
optional
passcodeHint
string | null
optional
<= 200 characters
signMarks
array[object (CreateEnvelopeSignerSignMarkApiRequest) {6}] | null
optional
documents
array[object (CreateEnvelopeDocumentApiRequest) {6}] | null
optional
id
string <uuid>
required
>= 1 characters
name
string
required
>= 2 characters<= 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
Example
{
"vaultId": "0e8f52f8-5376-4526-a515-7de46409a7ed",
"name": "Example Envelope",
"privateDescription": "Private description of the envelope",
"publicDescription": "Public description of the envelope",
"message": "Message of the envelope",
"reviewReminder": true,
"expiresAtUtc": "2025-04-28T12:47:40.2764978Z",
"expirationReminder": true,
"toBePublishedAtUtc": "2025-03-30T12:47:40.2764983Z",
"language": "EnUs",
"markupOrientation": "Bottom",
"signInOrder": true,
"signers": [
{
"name": "John Doe",
"email": "john.doe@example.com",
"role": "Sign",
"title": "Lawyer",
"shouldEnforceEmailValidation": true,
"shouldEnforceSmsValidation": true,
"shouldEnforceWhatsAppValidation": true,
"shouldEnforcePixValidation": true,
"shouldEnforceGeolocationValidation": true,
"shouldAllowCustomDigitalCertificateValidation": true,
"shouldEnforceCustomDigitalCertificateValidation": true,
"phoneIdd": 1,
"phoneNumber": "5555555555",
"documentType": "GenericIdentification",
"documentValue": "1234567890",
"shouldEnforcePasscodeValidation": true,
"passcode": "123456",
"passcodeHint": "1 to 6",
"signMarks": [
{
"type": "Rubric",
"documentId": "5876c6ef-1427-4d60-98e1-583035280478",
"page": 1,
"x": 100,
"y": 50,
"rotation": 0
},
{
"type": "Signature",
"documentId": "5876c6ef-1427-4d60-98e1-583035280478",
"page": 2,
"x": 200,
"y": 50,
"rotation": 0
}
]
}
],
"documents": [
{
"id": "5876c6ef-1427-4d60-98e1-583035280478",
"name": "Example Document",
"privateDescription": "Private description of the document",
"publicDescription": "Public description of the document",
"language": "EnUs",
"markupOrientation": "Bottom"
}
]
}
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/envelopes' \
--header 'Content-Type: application/json' \
--data-raw '{
"vaultId": "0e8f52f8-5376-4526-a515-7de46409a7ed",
"name": "Example Envelope",
"privateDescription": "Private description of the envelope",
"publicDescription": "Public description of the envelope",
"message": "Message of the envelope",
"reviewReminder": true,
"expiresAtUtc": "2025-04-28T12:47:40.2764978Z",
"expirationReminder": true,
"toBePublishedAtUtc": "2025-03-30T12:47:40.2764983Z",
"language": "EnUs",
"markupOrientation": "Bottom",
"signInOrder": true,
"signers": [
{
"name": "John Doe",
"email": "john.doe@example.com",
"role": "Sign",
"title": "Lawyer",
"shouldEnforceEmailValidation": true,
"shouldEnforceSmsValidation": true,
"shouldEnforceWhatsAppValidation": true,
"shouldEnforcePixValidation": true,
"shouldEnforceGeolocationValidation": true,
"shouldAllowCustomDigitalCertificateValidation": true,
"shouldEnforceCustomDigitalCertificateValidation": true,
"phoneIdd": 1,
"phoneNumber": "5555555555",
"documentType": "GenericIdentification",
"documentValue": "1234567890",
"shouldEnforcePasscodeValidation": true,
"passcode": "123456",
"passcodeHint": "1 to 6",
"signMarks": [
{
"type": "Rubric",
"documentId": "5876c6ef-1427-4d60-98e1-583035280478",
"page": 1,
"x": 100,
"y": 50,
"rotation": 0
},
{
"type": "Signature",
"documentId": "5876c6ef-1427-4d60-98e1-583035280478",
"page": 2,
"x": 200,
"y": 50,
"rotation": 0
}
]
}
],
"documents": [
{
"id": "5876c6ef-1427-4d60-98e1-583035280478",
"name": "Example Document",
"privateDescription": "Private description of the document",
"publicDescription": "Public description of the document",
"language": "EnUs",
"markupOrientation": "Bottom"
}
]
}'
Responses
🟢201Created
application/json
Body
id
string <uuid>
optional
Example
{
"id": "86da8bab-c17d-4bb0-b672-802d3c158be2"
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
Modified at 2025-03-29 12:47:42