SignplusService service. Click on the method name to view detailed information about that method.
| Methods | Description |
|---|---|
| createEnvelope | Create new envelope |
| createEnvelopeFromTemplate | Create new envelope from template |
| listEnvelopes | List envelopes |
| getEnvelope | Get envelope |
| deleteEnvelope | Delete envelope |
| downloadEnvelopeSignedDocuments | Download signed documents for an envelope |
| downloadEnvelopeCertificate | Download certificate of completion for an envelope |
| getEnvelopeDocument | Get envelope document |
| getEnvelopeDocuments | Get envelope documents |
| addEnvelopeDocument | Add envelope document |
| setEnvelopeDynamicFields | Set envelope dynamic fields |
| addEnvelopeSigningSteps | Add envelope signing steps |
| setEnvelopeAttachmentsSettings | Set envelope attachment settings |
| setEnvelopeAttachmentsPlaceholders | Placeholders to be set, completely replacing the existing ones. |
| getAttachmentFile | Get envelope attachment file |
| sendEnvelope | Send envelope for signature |
| duplicateEnvelope | Duplicate envelope |
| voidEnvelope | Void envelope |
| renameEnvelope | Rename envelope |
| setEnvelopeComment | Set envelope comment |
| setEnvelopeNotification | Set envelope notification |
| setEnvelopeExpirationDate | Set envelope expiration date |
| setEnvelopeLegalityLevel | Set envelope legality level |
| getEnvelopeAnnotations | Get envelope annotations |
| getEnvelopeDocumentAnnotations | Get envelope document annotations |
| addEnvelopeAnnotation | Add envelope annotation |
| deleteEnvelopeAnnotation | Delete envelope annotation |
| createTemplate | Create new template |
| listTemplates | List templates |
| getTemplate | Get template |
| deleteTemplate | Delete template |
| duplicateTemplate | Duplicate template |
| addTemplateDocument | Add template document |
| getTemplateDocument | Get template document |
| getTemplateDocuments | Get template documents |
| addTemplateSigningSteps | Add template signing steps |
| renameTemplate | Rename template |
| setTemplateComment | Set template comment |
| setTemplateNotification | Set template notification |
| getTemplateAnnotations | Get template annotations |
| getDocumentTemplateAnnotations | Get document template annotations |
| addTemplateAnnotation | Add template annotation |
| deleteTemplateAnnotation | Delete template annotation |
| setTemplateAttachmentsSettings | Set template attachment settings |
| setTemplateAttachmentsPlaceholders | Placeholders to be set, completely replacing the existing ones. |
| createWebhook | Create webhook |
| listWebhooks | List webhooks |
| deleteWebhook | Delete webhook |
createEnvelope
Create new envelope- HTTP Method:
POST - Endpoint:
/envelope
| Name | Type | Required | Description |
|---|---|---|---|
| body | CreateEnvelopeRequest | ✅ | The request body. |
Envelope
Example Usage Code Snippet
createEnvelopeFromTemplate
Create new envelope from template- HTTP Method:
POST - Endpoint:
/envelope/from_template/{template_id}
| Name | Type | Required | Description |
|---|---|---|---|
| body | CreateEnvelopeFromTemplateRequest | ✅ | The request body. |
| templateId | string | ✅ |
Envelope
Example Usage Code Snippet
listEnvelopes
List envelopes- HTTP Method:
POST - Endpoint:
/envelopes
| Name | Type | Required | Description |
|---|---|---|---|
| body | ListEnvelopesRequest | ❌ | The request body. |
ListEnvelopesResponse
Example Usage Code Snippet
getEnvelope
Get envelope- HTTP Method:
GET - Endpoint:
/envelope/{envelope_id}
| Name | Type | Required | Description |
|---|---|---|---|
| envelopeId | string | ✅ |
Envelope
Example Usage Code Snippet
deleteEnvelope
Delete envelope- HTTP Method:
DELETE - Endpoint:
/envelope/{envelope_id}
| Name | Type | Required | Description |
|---|---|---|---|
| envelopeId | string | ✅ |
downloadEnvelopeSignedDocuments
Download signed documents for an envelope- HTTP Method:
GET - Endpoint:
/envelope/{envelope_id}/signed_documents
| Name | Type | Required | Description |
|---|---|---|---|
| envelopeId | string | ✅ | ID of the envelope |
| certificateOfCompletion | boolean | ❌ | Whether to include the certificate of completion in the downloaded file |
ArrayBuffer
Example Usage Code Snippet
downloadEnvelopeCertificate
Download certificate of completion for an envelope- HTTP Method:
GET - Endpoint:
/envelope/{envelope_id}/certificate
| Name | Type | Required | Description |
|---|---|---|---|
| envelopeId | string | ✅ | ID of the envelope |
ArrayBuffer
Example Usage Code Snippet
getEnvelopeDocument
Get envelope document- HTTP Method:
GET - Endpoint:
/envelope/{envelope_id}/document/{document_id}
| Name | Type | Required | Description |
|---|---|---|---|
| envelopeId | string | ✅ | |
| documentId | string | ✅ |
Document
Example Usage Code Snippet
getEnvelopeDocuments
Get envelope documents- HTTP Method:
GET - Endpoint:
/envelope/{envelope_id}/documents
| Name | Type | Required | Description |
|---|---|---|---|
| envelopeId | string | ✅ |
ListEnvelopeDocumentsResponse
Example Usage Code Snippet
addEnvelopeDocument
Add envelope document- HTTP Method:
POST - Endpoint:
/envelope/{envelope_id}/document
| Name | Type | Required | Description |
|---|---|---|---|
| body | AddEnvelopeDocumentRequest | ✅ | The request body. |
| envelopeId | string | ✅ |
Document
Example Usage Code Snippet
setEnvelopeDynamicFields
Set envelope dynamic fields- HTTP Method:
PUT - Endpoint:
/envelope/{envelope_id}/dynamic_fields
| Name | Type | Required | Description |
|---|---|---|---|
| body | SetEnvelopeDynamicFieldsRequest | ✅ | The request body. |
| envelopeId | string | ✅ |
Envelope
Example Usage Code Snippet
addEnvelopeSigningSteps
Add envelope signing steps- HTTP Method:
POST - Endpoint:
/envelope/{envelope_id}/signing_steps
| Name | Type | Required | Description |
|---|---|---|---|
| body | AddEnvelopeSigningStepsRequest | ✅ | The request body. |
| envelopeId | string | ✅ |
Envelope
Example Usage Code Snippet
setEnvelopeAttachmentsSettings
Set envelope attachment settings- HTTP Method:
PUT - Endpoint:
/envelope/{envelope_id}/attachments/settings
| Name | Type | Required | Description |
|---|---|---|---|
| body | SetEnvelopeAttachmentsSettingsRequest | ✅ | The request body. |
| envelopeId | string | ✅ |
EnvelopeAttachments
Example Usage Code Snippet
setEnvelopeAttachmentsPlaceholders
Placeholders to be set, completely replacing the existing ones.- HTTP Method:
PUT - Endpoint:
/envelope/{envelope_id}/attachments/placeholders
| Name | Type | Required | Description |
|---|---|---|---|
| body | SetEnvelopeAttachmentsPlaceholdersRequest | ✅ | The request body. |
| envelopeId | string | ✅ |
EnvelopeAttachments
Example Usage Code Snippet
getAttachmentFile
Get envelope attachment file- HTTP Method:
GET - Endpoint:
/envelope/{envelope_id}/attachments/{file_id}
| Name | Type | Required | Description |
|---|---|---|---|
| envelopeId | string | ✅ | |
| fileId | string | ✅ |
ArrayBuffer
Example Usage Code Snippet
sendEnvelope
Send envelope for signature- HTTP Method:
POST - Endpoint:
/envelope/{envelope_id}/send
| Name | Type | Required | Description |
|---|---|---|---|
| envelopeId | string | ✅ |
Envelope
Example Usage Code Snippet
duplicateEnvelope
Duplicate envelope- HTTP Method:
POST - Endpoint:
/envelope/{envelope_id}/duplicate
| Name | Type | Required | Description |
|---|---|---|---|
| envelopeId | string | ✅ |
Envelope
Example Usage Code Snippet
voidEnvelope
Void envelope- HTTP Method:
PUT - Endpoint:
/envelope/{envelope_id}/void
| Name | Type | Required | Description |
|---|---|---|---|
| envelopeId | string | ✅ |
Envelope
Example Usage Code Snippet
renameEnvelope
Rename envelope- HTTP Method:
PUT - Endpoint:
/envelope/{envelope_id}/rename
| Name | Type | Required | Description |
|---|---|---|---|
| body | RenameEnvelopeRequest | ✅ | The request body. |
| envelopeId | string | ✅ |
Envelope
Example Usage Code Snippet
setEnvelopeComment
Set envelope comment- HTTP Method:
PUT - Endpoint:
/envelope/{envelope_id}/set_comment
| Name | Type | Required | Description |
|---|---|---|---|
| body | SetEnvelopeCommentRequest | ✅ | The request body. |
| envelopeId | string | ✅ |
Envelope
Example Usage Code Snippet
setEnvelopeNotification
Set envelope notification- HTTP Method:
PUT - Endpoint:
/envelope/{envelope_id}/set_notification
| Name | Type | Required | Description |
|---|---|---|---|
| body | EnvelopeNotification | ✅ | The request body. |
| envelopeId | string | ✅ |
Envelope
Example Usage Code Snippet
setEnvelopeExpirationDate
Set envelope expiration date- HTTP Method:
PUT - Endpoint:
/envelope/{envelope_id}/set_expiration_date
| Name | Type | Required | Description |
|---|---|---|---|
| body | SetEnvelopeExpirationRequest | ✅ | The request body. |
| envelopeId | string | ✅ |
Envelope
Example Usage Code Snippet
setEnvelopeLegalityLevel
Set envelope legality level- HTTP Method:
PUT - Endpoint:
/envelope/{envelope_id}/set_legality_level
| Name | Type | Required | Description |
|---|---|---|---|
| body | SetEnvelopeLegalityLevelRequest | ✅ | The request body. |
| envelopeId | string | ✅ |
Envelope
Example Usage Code Snippet
getEnvelopeAnnotations
Get envelope annotations- HTTP Method:
GET - Endpoint:
/envelope/{envelope_id}/annotations
| Name | Type | Required | Description |
|---|---|---|---|
| envelopeId | string | ✅ | ID of the envelope |
Annotation[]
Example Usage Code Snippet
getEnvelopeDocumentAnnotations
Get envelope document annotations- HTTP Method:
GET - Endpoint:
/envelope/{envelope_id}/annotations/{document_id}
| Name | Type | Required | Description |
|---|---|---|---|
| envelopeId | string | ✅ | ID of the envelope |
| documentId | string | ✅ | ID of document |
ListEnvelopeDocumentAnnotationsResponse
Example Usage Code Snippet
addEnvelopeAnnotation
Add envelope annotation- HTTP Method:
POST - Endpoint:
/envelope/{envelope_id}/annotation
| Name | Type | Required | Description |
|---|---|---|---|
| body | AddAnnotationRequest | ✅ | The request body. |
| envelopeId | string | ✅ | ID of the envelope |
Annotation
Example Usage Code Snippet
deleteEnvelopeAnnotation
Delete envelope annotation- HTTP Method:
DELETE - Endpoint:
/envelope/{envelope_id}/annotation/{annotation_id}
| Name | Type | Required | Description |
|---|---|---|---|
| envelopeId | string | ✅ | ID of the envelope |
| annotationId | string | ✅ | ID of the annotation to delete |
createTemplate
Create new template- HTTP Method:
POST - Endpoint:
/template
| Name | Type | Required | Description |
|---|---|---|---|
| body | CreateTemplateRequest | ✅ | The request body. |
Template
Example Usage Code Snippet
listTemplates
List templates- HTTP Method:
POST - Endpoint:
/templates
| Name | Type | Required | Description |
|---|---|---|---|
| body | ListTemplatesRequest | ❌ | The request body. |
ListTemplatesResponse
Example Usage Code Snippet
getTemplate
Get template- HTTP Method:
GET - Endpoint:
/template/{template_id}
| Name | Type | Required | Description |
|---|---|---|---|
| templateId | string | ✅ |
Template
Example Usage Code Snippet
deleteTemplate
Delete template- HTTP Method:
DELETE - Endpoint:
/template/{template_id}
| Name | Type | Required | Description |
|---|---|---|---|
| templateId | string | ✅ |
duplicateTemplate
Duplicate template- HTTP Method:
POST - Endpoint:
/template/{template_id}/duplicate
| Name | Type | Required | Description |
|---|---|---|---|
| templateId | string | ✅ |
Template
Example Usage Code Snippet
addTemplateDocument
Add template document- HTTP Method:
POST - Endpoint:
/template/{template_id}/document
| Name | Type | Required | Description |
|---|---|---|---|
| body | AddTemplateDocumentRequest | ✅ | The request body. |
| templateId | string | ✅ |
Document
Example Usage Code Snippet
getTemplateDocument
Get template document- HTTP Method:
GET - Endpoint:
/template/{template_id}/document/{document_id}
| Name | Type | Required | Description |
|---|---|---|---|
| templateId | string | ✅ | |
| documentId | string | ✅ |
Document
Example Usage Code Snippet
getTemplateDocuments
Get template documents- HTTP Method:
GET - Endpoint:
/template/{template_id}/documents
| Name | Type | Required | Description |
|---|---|---|---|
| templateId | string | ✅ |
ListTemplateDocumentsResponse
Example Usage Code Snippet
addTemplateSigningSteps
Add template signing steps- HTTP Method:
POST - Endpoint:
/template/{template_id}/signing_steps
| Name | Type | Required | Description |
|---|---|---|---|
| body | AddTemplateSigningStepsRequest | ✅ | The request body. |
| templateId | string | ✅ |
Template
Example Usage Code Snippet
renameTemplate
Rename template- HTTP Method:
PUT - Endpoint:
/template/{template_id}/rename
| Name | Type | Required | Description |
|---|---|---|---|
| body | RenameTemplateRequest | ✅ | The request body. |
| templateId | string | ✅ |
Template
Example Usage Code Snippet
setTemplateComment
Set template comment- HTTP Method:
PUT - Endpoint:
/template/{template_id}/set_comment
| Name | Type | Required | Description |
|---|---|---|---|
| body | SetTemplateCommentRequest | ✅ | The request body. |
| templateId | string | ✅ |
Template
Example Usage Code Snippet
setTemplateNotification
Set template notification- HTTP Method:
PUT - Endpoint:
/template/{template_id}/set_notification
| Name | Type | Required | Description |
|---|---|---|---|
| body | EnvelopeNotification | ✅ | The request body. |
| templateId | string | ✅ |
Template
Example Usage Code Snippet
getTemplateAnnotations
Get template annotations- HTTP Method:
GET - Endpoint:
/template/{template_id}/annotations
| Name | Type | Required | Description |
|---|---|---|---|
| templateId | string | ✅ | ID of the template |
ListTemplateAnnotationsResponse
Example Usage Code Snippet
getDocumentTemplateAnnotations
Get document template annotations- HTTP Method:
GET - Endpoint:
/template/{template_id}/annotations/{document_id}
| Name | Type | Required | Description |
|---|---|---|---|
| templateId | string | ✅ | ID of the template |
| documentId | string | ✅ | ID of document |
ListTemplateDocumentAnnotationsResponse
Example Usage Code Snippet
addTemplateAnnotation
Add template annotation- HTTP Method:
POST - Endpoint:
/template/{template_id}/annotation
| Name | Type | Required | Description |
|---|---|---|---|
| body | AddAnnotationRequest | ✅ | The request body. |
| templateId | string | ✅ | ID of the template |
Annotation
Example Usage Code Snippet
deleteTemplateAnnotation
Delete template annotation- HTTP Method:
DELETE - Endpoint:
/template/{template_id}/annotation/{annotation_id}
| Name | Type | Required | Description |
|---|---|---|---|
| templateId | string | ✅ | ID of the template |
| annotationId | string | ✅ | ID of the annotation to delete |
setTemplateAttachmentsSettings
Set template attachment settings- HTTP Method:
PUT - Endpoint:
/template/{template_id}/attachments/settings
| Name | Type | Required | Description |
|---|---|---|---|
| body | SetEnvelopeAttachmentsSettingsRequest | ✅ | The request body. |
| templateId | string | ✅ |
EnvelopeAttachments
Example Usage Code Snippet
setTemplateAttachmentsPlaceholders
Placeholders to be set, completely replacing the existing ones.- HTTP Method:
PUT - Endpoint:
/template/{template_id}/attachments/placeholders
| Name | Type | Required | Description |
|---|---|---|---|
| body | SetEnvelopeAttachmentsPlaceholdersRequest | ✅ | The request body. |
| templateId | string | ✅ |
EnvelopeAttachments
Example Usage Code Snippet
createWebhook
Create webhook- HTTP Method:
POST - Endpoint:
/webhook
| Name | Type | Required | Description |
|---|---|---|---|
| body | CreateWebhookRequest | ✅ | The request body. |
Webhook
Example Usage Code Snippet
listWebhooks
List webhooks- HTTP Method:
POST - Endpoint:
/webhooks
| Name | Type | Required | Description |
|---|---|---|---|
| body | ListWebhooksRequest | ❌ | The request body. |
ListWebhooksResponse
Example Usage Code Snippet
deleteWebhook
Delete webhook- HTTP Method:
DELETE - Endpoint:
/webhook/{webhook_id}
| Name | Type | Required | Description |
|---|---|---|---|
| webhookId | string | ✅ |
Models
SetEnvelopeAttachmentsPlaceholdersRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| placeholders | AttachmentPlaceholderRequest1[] | ✅ |
Document
Properties| Name | Type | Required | Description |
|---|---|---|---|
| id | string | ❌ | Unique identifier of the document |
| name | string | ❌ | Name of the document |
| filename | string | ❌ | Filename of the document |
| pageCount | number | ❌ | Number of pages in the document |
| pages | Page[] | ❌ | List of pages in the document |
CreateEnvelopeRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| name | string | ✅ | Name of the envelope |
| legalityLevel | EnvelopeLegalityLevel | ✅ | Legal level of the envelope (SES is Simple Electronic Signature, QES_EIDAS is Qualified Electronic Signature, QES_ZERTES is Qualified Electronic Signature with Zertes) |
| expiresAt | number | ❌ | Unix timestamp of the expiration date |
| comment | string | ❌ | Comment for the envelope |
| sandbox | boolean | ❌ | Whether the envelope is created in sandbox mode |
ListEnvelopesRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| name | string | ❌ | Name of the envelope |
| tags | string[] | ❌ | List of tags |
| comment | string | ❌ | Comment of the envelope |
| ids | string[] | ❌ | List of envelope IDs |
| statuses | EnvelopeStatus[] | ❌ | List of envelope statuses |
| folderIds | string[] | ❌ | List of folder IDs |
| onlyRootFolder | boolean | ❌ | Whether to only list envelopes in the root folder |
| dateFrom | number | ❌ | Unix timestamp of the start date |
| dateTo | number | ❌ | Unix timestamp of the end date |
| uid | string | ❌ | Unique identifier of the user |
| first | number | ❌ | |
| last | number | ❌ | |
| after | string | ❌ | |
| before | string | ❌ | |
| orderField | EnvelopeOrderField | ❌ | Field to order envelopes by |
| ascending | boolean | ❌ | Whether to order envelopes in ascending order |
| includeTrash | boolean | ❌ | Whether to include envelopes in the trash |
AttachmentPlaceholder
Properties| Name | Type | Required | Description |
|---|---|---|---|
| recipientId | string | ❌ | ID of the recipient |
| id | string | ❌ | ID of the attachment placeholder |
| name | string | ❌ | Name of the attachment placeholder |
| hint | string | ❌ | Hint of the attachment placeholder |
| required | boolean | ❌ | Whether the attachment placeholder is required |
| multiple | boolean | ❌ | Whether the attachment placeholder can have multiple files |
| files | AttachmentPlaceholderFile[] | ❌ |
SetEnvelopeAttachmentsSettingsRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| settings | AttachmentSettings | ✅ |
EnvelopeNotification
Properties| Name | Type | Required | Description |
|---|---|---|---|
| subject | string | ❌ | Subject of the notification |
| message | string | ❌ | Message of the notification |
| reminderInterval | number | ❌ | Interval in days to send reminder |
ListTemplatesRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| name | string | ❌ | Name of the template |
| tags | string[] | ❌ | List of tag templates |
| ids | string[] | ❌ | List of templates IDs |
| first | number | ❌ | |
| last | number | ❌ | |
| after | string | ❌ | |
| before | string | ❌ | |
| orderField | TemplateOrderField | ❌ | Field to order templates by |
| ascending | boolean | ❌ | Whether to order templates in ascending order |
SetTemplateCommentRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| comment | string | ✅ | Comment for the template |
Template
Properties| Name | Type | Required | Description |
|---|---|---|---|
| id | string | ❌ | Unique identifier of the template |
| name | string | ❌ | Name of the template |
| comment | string | ❌ | Comment for the template |
| pages | number | ❌ | Total number of pages in the template |
| legalityLevel | EnvelopeLegalityLevel | ❌ | Legal level of the envelope (SES is Simple Electronic Signature, QES_EIDAS is Qualified Electronic Signature, QES_ZERTES is Qualified Electronic Signature with Zertes) |
| createdAt | number | ❌ | Unix timestamp of the creation date |
| updatedAt | number | ❌ | Unix timestamp of the last modification date |
| expirationDelay | number | ❌ | Expiration delay added to the current time when an envelope is created from this template |
| numRecipients | number | ❌ | Number of recipients in the envelope |
| signingSteps | TemplateSigningStep[] | ❌ | |
| documents | Document[] | ❌ | |
| notification | EnvelopeNotification | ❌ | |
| dynamicFields | string[] | ❌ | List of dynamic fields |
| attachments | EnvelopeAttachments | ❌ |
RecipientVerificationType
Type of verification the recipient must complete before accessing the envelope. -PASSCODE: requires a code to be entered. - SMS: sends a code via SMS. - ID_VERIFICATION: prompts the recipient to complete an automated ID and selfie check.
Properties
| Name | Type | Required | Description |
|---|---|---|---|
| SMS | string | ✅ | “SMS” |
| PASSCODE | string | ✅ | “PASSCODE” |
| ID_VERIFICATION | string | ✅ | “ID_VERIFICATION” |
AddEnvelopeSigningStepsRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| signingSteps | SigningStep[] | ❌ | List of signing steps |
AnnotationFontFamily
Font family of the text Properties| Name | Type | Required | Description |
|---|---|---|---|
| UNKNOWN | string | ✅ | “UNKNOWN” |
| SERIF | string | ✅ | “SERIF” |
| SANS | string | ✅ | “SANS” |
| MONO | string | ✅ | “MONO” |
AddTemplateSigningStepsRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| signingSteps | TemplateSigningStep[] | ✅ | List of signing steps |
SetEnvelopeCommentRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| comment | string | ✅ | Comment for the envelope |
TemplateOrderField
Field to order templates by Properties| Name | Type | Required | Description |
|---|---|---|---|
| TEMPLATE_ID | string | ✅ | “TEMPLATE_ID” |
| TEMPLATE_CREATION_DATE | string | ✅ | “TEMPLATE_CREATION_DATE” |
| TEMPLATE_MODIFICATION_DATE | string | ✅ | “TEMPLATE_MODIFICATION_DATE” |
| TEMPLATE_NAME | string | ✅ | “TEMPLATE_NAME” |
EnvelopeOrderField
Field to order envelopes by Properties| Name | Type | Required | Description |
|---|---|---|---|
| CREATION_DATE | string | ✅ | “CREATION_DATE” |
| MODIFICATION_DATE | string | ✅ | “MODIFICATION_DATE” |
| NAME | string | ✅ | “NAME” |
| STATUS | string | ✅ | “STATUS” |
| LAST_DOCUMENT_CHANGE | string | ✅ | “LAST_DOCUMENT_CHANGE” |
AddEnvelopeDocumentRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| file | ArrayBuffer | ❌ | File to upload in binary format |
ListWebhooksRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| webhookId | string | ❌ | ID of the webhook |
| event | WebhookEvent | ❌ | Event of the webhook |
SetEnvelopeLegalityLevelRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| legalityLevel | EnvelopeLegalityLevel | ❌ | Legal level of the envelope (SES is Simple Electronic Signature, QES_EIDAS is Qualified Electronic Signature, QES_ZERTES is Qualified Electronic Signature with Zertes) |
AttachmentPlaceholderFile
Properties| Name | Type | Required | Description |
|---|---|---|---|
| id | string | ❌ | ID of the file |
| name | string | ❌ | Name of the file |
| size | number | ❌ | Size of the file in bytes |
| mimetype | string | ❌ | MIME type of the file |
SetEnvelopeExpirationRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| expiresAt | number | ✅ | Unix timestamp of the expiration date |
AnnotationText
Text annotation (null if annotation is not a text) Properties| Name | Type | Required | Description |
|---|---|---|---|
| size | number | ❌ | Font size of the text in pt |
| color | number | ❌ | Text color in 32bit representation |
| value | string | ❌ | Text content of the annotation |
| tooltip | string | ❌ | Tooltip of the annotation |
| dynamicFieldName | string | ❌ | Name of the dynamic field |
| font | AnnotationFont | ❌ |
AnnotationCheckbox
Checkbox annotation (null if annotation is not a checkbox) Properties| Name | Type | Required | Description |
|---|---|---|---|
| checked | boolean | ❌ | Whether the checkbox is checked |
| style | AnnotationCheckboxStyle | ❌ | Style of the checkbox |
Envelope
Properties| Name | Type | Required | Description |
|---|---|---|---|
| id | string | ❌ | Unique identifier of the envelope |
| name | string | ❌ | Name of the envelope |
| comment | string | ❌ | Comment for the envelope |
| pages | number | ❌ | Total number of pages in the envelope |
| flowType | EnvelopeFlowType | ❌ | Flow type of the envelope (REQUEST_SIGNATURE is a request for signature, SIGN_MYSELF is a self-signing flow) |
| legalityLevel | EnvelopeLegalityLevel | ❌ | Legal level of the envelope (SES is Simple Electronic Signature, QES_EIDAS is Qualified Electronic Signature, QES_ZERTES is Qualified Electronic Signature with Zertes) |
| status | EnvelopeStatus | ❌ | Status of the envelope |
| createdAt | number | ❌ | Unix timestamp of the creation date |
| updatedAt | number | ❌ | Unix timestamp of the last modification date |
| expiresAt | number | ❌ | Unix timestamp of the expiration date |
| numRecipients | number | ❌ | Number of recipients in the envelope |
| isDuplicable | boolean | ❌ | Whether the envelope can be duplicated |
| signingSteps | SigningStep[] | ❌ | |
| documents | Document[] | ❌ | |
| notification | EnvelopeNotification | ❌ | |
| attachments | EnvelopeAttachments | ❌ |
AddTemplateDocumentRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| file | ArrayBuffer | ✅ | File to upload in binary format |
TemplateRecipient
Properties| Name | Type | Required | Description |
|---|---|---|---|
| id | string | ❌ | Unique identifier of the recipient |
| uid | string | ❌ | Unique identifier of the user associated with the recipient |
| name | string | ❌ | Name of the recipient |
| string | ❌ | Email of the recipient | |
| role | TemplateRecipientRole | ❌ | Role of the recipient (SIGNER signs the document, RECEIVES_COPY receives a copy of the document, IN_PERSON_SIGNER signs the document in person, SENDER sends the document) |
AddAnnotationRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| documentId | string | ✅ | ID of the document |
| page | number | ✅ | Page number where the annotation is placed |
| x | number | ✅ | X coordinate of the annotation (in % of the page width from 0 to 100) from the top left corner |
| y | number | ✅ | Y coordinate of the annotation (in % of the page height from 0 to 100) from the top left corner |
| width | number | ✅ | Width of the annotation (in % of the page width from 0 to 100) |
| height | number | ✅ | Height of the annotation (in % of the page height from 0 to 100) |
| type | AnnotationType | ✅ | Type of the annotation |
| recipientId | string | ❌ | ID of the recipient |
| required | boolean | ❌ | |
| signature | AnnotationSignature | ❌ | Signature annotation (null if annotation is not a signature) |
| initials | AnnotationInitials | ❌ | Initials annotation (null if annotation is not initials) |
| text | AnnotationText | ❌ | Text annotation (null if annotation is not a text) |
| datetime | AnnotationDateTime | ❌ | Date annotation (null if annotation is not a date) |
| checkbox | AnnotationCheckbox | ❌ | Checkbox annotation (null if annotation is not a checkbox) |
ListEnvelopeDocumentAnnotationsResponse
Properties| Name | Type | Required | Description |
|---|---|---|---|
| annotations | Annotation[] | ❌ |
EnvelopeStatus
Status of the envelope Properties| Name | Type | Required | Description |
|---|---|---|---|
| DRAFT | string | ✅ | “DRAFT” |
| IN_PROGRESS | string | ✅ | “IN_PROGRESS” |
| COMPLETED | string | ✅ | “COMPLETED” |
| EXPIRED | string | ✅ | “EXPIRED” |
| DECLINED | string | ✅ | “DECLINED” |
| VOIDED | string | ✅ | “VOIDED” |
| PENDING | string | ✅ | “PENDING” |
RecipientVerification
Properties| Name | Type | Required | Description |
|---|---|---|---|
| type | RecipientVerificationType | ❌ | Type of verification the recipient must complete before accessing the envelope. - PASSCODE: requires a code to be entered. - SMS: sends a code via SMS. - ID_VERIFICATION: prompts the recipient to complete an automated ID and selfie check. |
| value | string | ❌ | Required for PASSCODE and SMS verification. - PASSCODE: code required by the recipient to sign the document. - SMS: recipient’s phone number. - ID_VERIFICATION: leave empty. |
AnnotationCheckboxStyle
Style of the checkbox Properties| Name | Type | Required | Description |
|---|---|---|---|
| CIRCLE_CHECK | string | ✅ | “CIRCLE_CHECK” |
| CIRCLE_FULL | string | ✅ | “CIRCLE_FULL” |
| SQUARE_CHECK | string | ✅ | “SQUARE_CHECK” |
| SQUARE_FULL | string | ✅ | “SQUARE_FULL” |
| CHECK_MARK | string | ✅ | “CHECK_MARK” |
| TIMES_SQUARE | string | ✅ | “TIMES_SQUARE” |
SigningStep
Properties| Name | Type | Required | Description |
|---|---|---|---|
| recipients | Recipient[] | ❌ | List of recipients |
AnnotationDateTime
Date annotation (null if annotation is not a date) Properties| Name | Type | Required | Description |
|---|---|---|---|
| size | number | ❌ | Font size of the text in pt |
| font | AnnotationFont | ❌ | |
| color | string | ❌ | Color of the text in hex format |
| autoFill | boolean | ❌ | Whether the date should be automatically filled |
| timezone | string | ❌ | Timezone of the date |
| timestamp | number | ❌ | Unix timestamp of the date |
| format | AnnotationDateTimeFormat | ❌ | Format of the date time (DMY_NUMERIC_SLASH is day/month/year with slashes, MDY_NUMERIC_SLASH is month/day/year with slashes, YMD_NUMERIC_SLASH is year/month/day with slashes, DMY_NUMERIC_DASH_SHORT is day/month/year with dashes, DMY_NUMERIC_DASH is day/month/year with dashes, YMD_NUMERIC_DASH is year/month/day with dashes, MDY_TEXT_DASH_SHORT is month/day/year with dashes, MDY_TEXT_SPACE_SHORT is month/day/year with spaces, MDY_TEXT_SPACE is month/day/year with spaces) |
AttachmentSettings
Properties| Name | Type | Required | Description |
|---|---|---|---|
| visibleToRecipients | boolean | ❌ | Whether the attachment is visible to the recipients |
CreateTemplateRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| name | string | ✅ |
ListTemplateDocumentsResponse
Properties| Name | Type | Required | Description |
|---|---|---|---|
| documents | Document[] | ❌ |
AnnotationInitials
Initials annotation (null if annotation is not initials) Properties| Name | Type | Required | Description |
|---|---|---|---|
| id | string | ❌ | Unique identifier of the annotation initials |
AnnotationFont
Properties| Name | Type | Required | Description |
|---|---|---|---|
| family | AnnotationFontFamily | ❌ | Font family of the text |
| italic | boolean | ❌ | Whether the text is italic |
| bold | boolean | ❌ | Whether the text is bold |
AnnotationType
Type of the annotation Properties| Name | Type | Required | Description |
|---|---|---|---|
| TEXT | string | ✅ | “TEXT” |
| SIGNATURE | string | ✅ | “SIGNATURE” |
| INITIALS | string | ✅ | “INITIALS” |
| CHECKBOX | string | ✅ | “CHECKBOX” |
| DATE | string | ✅ | “DATE” |
Webhook
Properties| Name | Type | Required | Description |
|---|---|---|---|
| id | string | ❌ | Unique identifier of the webhook |
| event | WebhookEvent | ❌ | Event of the webhook |
| target | string | ❌ | Target URL of the webhook |
RenameTemplateRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| name | string | ✅ | Name of the template |
ListTemplatesResponse
Properties| Name | Type | Required | Description |
|---|---|---|---|
| hasNextPage | boolean | ❌ | Whether there is a next page |
| hasPreviousPage | boolean | ❌ | Whether there is a previous page |
| templates | Template[] | ❌ |
EnvelopeAttachments
Properties| Name | Type | Required | Description |
|---|---|---|---|
| settings | AttachmentSettings | ❌ | |
| recipients | AttachmentPlaceholdersPerRecipient[] | ❌ |
RecipientRole
Role of the recipient (SIGNER signs the document, RECEIVES_COPY receives a copy of the document, IN_PERSON_SIGNER signs the document in person, SENDER sends the document) Properties| Name | Type | Required | Description |
|---|---|---|---|
| SIGNER | string | ✅ | “SIGNER” |
| RECEIVES_COPY | string | ✅ | “RECEIVES_COPY” |
| IN_PERSON_SIGNER | string | ✅ | “IN_PERSON_SIGNER” |
Annotation
Properties| Name | Type | Required | Description |
|---|---|---|---|
| id | string | ❌ | Unique identifier of the annotation |
| recipientId | string | ❌ | ID of the recipient |
| documentId | string | ❌ | ID of the document |
| page | number | ❌ | Page number where the annotation is placed |
| x | number | ❌ | X coordinate of the annotation (in % of the page width from 0 to 100) from the top left corner |
| y | number | ❌ | Y coordinate of the annotation (in % of the page height from 0 to 100) from the top left corner |
| width | number | ❌ | Width of the annotation (in % of the page width from 0 to 100) |
| height | number | ❌ | Height of the annotation (in % of the page height from 0 to 100) |
| required | boolean | ❌ | Whether the annotation is required |
| type | AnnotationType | ❌ | Type of the annotation |
| signature | AnnotationSignature | ❌ | Signature annotation (null if annotation is not a signature) |
| initials | AnnotationInitials | ❌ | Initials annotation (null if annotation is not initials) |
| text | AnnotationText | ❌ | Text annotation (null if annotation is not a text) |
| datetime | AnnotationDateTime | ❌ | Date annotation (null if annotation is not a date) |
| checkbox | AnnotationCheckbox | ❌ | Checkbox annotation (null if annotation is not a checkbox) |
DynamicField
Properties| Name | Type | Required | Description |
|---|---|---|---|
| name | string | ❌ | Name of the dynamic field |
| value | string | ❌ | Value of the dynamic field |
AnnotationDateTimeFormat
Format of the date time (DMY_NUMERIC_SLASH is day/month/year with slashes, MDY_NUMERIC_SLASH is month/day/year with slashes, YMD_NUMERIC_SLASH is year/month/day with slashes, DMY_NUMERIC_DASH_SHORT is day/month/year with dashes, DMY_NUMERIC_DASH is day/month/year with dashes, YMD_NUMERIC_DASH is year/month/day with dashes, MDY_TEXT_DASH_SHORT is month/day/year with dashes, MDY_TEXT_SPACE_SHORT is month/day/year with spaces, MDY_TEXT_SPACE is month/day/year with spaces) Properties| Name | Type | Required | Description |
|---|---|---|---|
| DMY_NUMERIC_SLASH | string | ✅ | “DMY_NUMERIC_SLASH” |
| MDY_NUMERIC_SLASH | string | ✅ | “MDY_NUMERIC_SLASH” |
| YMD_NUMERIC_SLASH | string | ✅ | “YMD_NUMERIC_SLASH” |
| DMY_NUMERIC_DASH_SHORT | string | ✅ | “DMY_NUMERIC_DASH_SHORT” |
| DMY_NUMERIC_DASH | string | ✅ | “DMY_NUMERIC_DASH” |
| YMD_NUMERIC_DASH | string | ✅ | “YMD_NUMERIC_DASH” |
| MDY_TEXT_DASH_SHORT | string | ✅ | “MDY_TEXT_DASH_SHORT” |
| MDY_TEXT_SPACE_SHORT | string | ✅ | “MDY_TEXT_SPACE_SHORT” |
| MDY_TEXT_SPACE | string | ✅ | “MDY_TEXT_SPACE” |
EnvelopeFlowType
Flow type of the envelope (REQUEST_SIGNATURE is a request for signature, SIGN_MYSELF is a self-signing flow) Properties| Name | Type | Required | Description |
|---|---|---|---|
| REQUEST_SIGNATURE | string | ✅ | “REQUEST_SIGNATURE” |
| SIGN_MYSELF | string | ✅ | “SIGN_MYSELF” |
EnvelopeLegalityLevel
Legal level of the envelope (SES is Simple Electronic Signature, QES_EIDAS is Qualified Electronic Signature, QES_ZERTES is Qualified Electronic Signature with Zertes) Properties| Name | Type | Required | Description |
|---|---|---|---|
| SES | string | ✅ | “SES” |
| QES_EIDAS | string | ✅ | “QES_EIDAS” |
| QES_ZERTES | string | ✅ | “QES_ZERTES” |
TemplateRecipientRole
Role of the recipient (SIGNER signs the document, RECEIVES_COPY receives a copy of the document, IN_PERSON_SIGNER signs the document in person, SENDER sends the document) Properties| Name | Type | Required | Description |
|---|---|---|---|
| SIGNER | string | ✅ | “SIGNER” |
| RECEIVES_COPY | string | ✅ | “RECEIVES_COPY” |
| IN_PERSON_SIGNER | string | ✅ | “IN_PERSON_SIGNER” |
| SENDER | string | ✅ | “SENDER” |
SetEnvelopeDynamicFieldsRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| dynamicFields | DynamicField[] | ✅ | List of dynamic fields |
Page
Properties| Name | Type | Required | Description |
|---|---|---|---|
| width | number | ❌ | Width of the page in pixels |
| height | number | ❌ | Height of the page in pixels |
TemplateSigningStep
Properties| Name | Type | Required | Description |
|---|---|---|---|
| recipients | TemplateRecipient[] | ❌ | List of recipients |
AttachmentPlaceholdersPerRecipient
Properties| Name | Type | Required | Description |
|---|---|---|---|
| recipientId | string | ❌ | ID of the recipient |
| recipientName | string | ❌ | Name of the recipient |
| placeholders | AttachmentPlaceholder[] | ❌ |
ListEnvelopesResponse
Properties| Name | Type | Required | Description |
|---|---|---|---|
| hasNextPage | boolean | ❌ | Whether there is a next page |
| hasPreviousPage | boolean | ❌ | Whether there is a previous page |
| envelopes | Envelope[] | ❌ |
Recipient
Properties| Name | Type | Required | Description |
|---|---|---|---|
| name | string | ✅ | Name of the recipient |
| string | ✅ | Email of the recipient | |
| role | RecipientRole | ✅ | Role of the recipient (SIGNER signs the document, RECEIVES_COPY receives a copy of the document, IN_PERSON_SIGNER signs the document in person, SENDER sends the document) |
| id | string | ❌ | Unique identifier of the recipient |
| uid | string | ❌ | Unique identifier of the user associated with the recipient |
| verification | RecipientVerification | ❌ |
WebhookEvent
Event of the webhook Properties| Name | Type | Required | Description |
|---|---|---|---|
| ENVELOPE_EXPIRED | string | ✅ | “ENVELOPE_EXPIRED” |
| ENVELOPE_DECLINED | string | ✅ | “ENVELOPE_DECLINED” |
| ENVELOPE_VOIDED | string | ✅ | “ENVELOPE_VOIDED” |
| ENVELOPE_COMPLETED | string | ✅ | “ENVELOPE_COMPLETED” |
| ENVELOPE_AUDIT_TRAIL | string | ✅ | “ENVELOPE_AUDIT_TRAIL” |
CreateWebhookRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| event | WebhookEvent | ✅ | Event of the webhook |
| target | string | ✅ | URL of the webhook target |
CreateEnvelopeFromTemplateRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| name | string | ✅ | Name of the envelope |
| comment | string | ❌ | Comment for the envelope |
| sandbox | boolean | ❌ | Whether the envelope is created in sandbox mode |
ListTemplateAnnotationsResponse
Properties| Name | Type | Required | Description |
|---|---|---|---|
| annotations | Annotation[] | ❌ |
RenameEnvelopeRequest
Properties| Name | Type | Required | Description |
|---|---|---|---|
| name | string | ❌ | Name of the envelope |
ListTemplateDocumentAnnotationsResponse
Properties| Name | Type | Required | Description |
|---|---|---|---|
| annotations | Annotation[] | ❌ |
AttachmentPlaceholderRequest1
Properties| Name | Type | Required | Description |
|---|---|---|---|
| recipientId | string | ✅ | ID of the recipient |
| name | string | ✅ | |
| required | boolean | ✅ | Whether the attachment placeholder is required |
| multiple | boolean | ✅ | |
| id | string | ❌ | ID of the attachment placeholder |
| hint | string | ❌ | Hint of the attachment placeholder |
ListEnvelopeDocumentsResponse
Properties| Name | Type | Required | Description |
|---|---|---|---|
| documents | Document[] | ❌ |
ListWebhooksResponse
Properties| Name | Type | Required | Description |
|---|---|---|---|
| webhooks | Webhook[] | ❌ |
AnnotationSignature
Signature annotation (null if annotation is not a signature) Properties| Name | Type | Required | Description |
|---|---|---|---|
| id | string | ❌ | Unique identifier of the annotation signature |