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 |
getEnvelopeDocument | Get envelope document |
getEnvelopeDocuments | Get envelope documents |
addEnvelopeDocument | Add envelope document |
setEnvelopeDynamicFields | Set envelope dynamic fields |
addEnvelopeSigningSteps | Add envelope signing steps |
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 |
createWebhook | Create webhook |
listWebhooks | List webhooks |
deleteWebhook | Delete webhook |
POST
/envelope
Name | Type | Required | Description |
---|---|---|---|
createEnvelopeRequest | CreateEnvelopeRequest | ✅ | Request Body |
Envelope
Example Usage Code Snippet
POST
/envelope/from_template/{template_id}
Name | Type | Required | Description |
---|---|---|---|
templateId | String | ✅ | |
createEnvelopeFromTemplateRequest | CreateEnvelopeFromTemplateRequest | ✅ | Request Body |
Envelope
Example Usage Code Snippet
POST
/envelopes
Name | Type | Required | Description |
---|---|---|---|
listEnvelopesRequest | ListEnvelopesRequest | ❌ | Request Body |
ListEnvelopesResponse
Example Usage Code Snippet
GET
/envelope/{envelope_id}
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ |
Envelope
Example Usage Code Snippet
DELETE
/envelope/{envelope_id}
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ |
GET
/envelope/{envelope_id}/document/{document_id}
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ | |
documentId | String | ✅ |
Document
Example Usage Code Snippet
GET
/envelope/{envelope_id}/documents
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ |
ListEnvelopeDocumentsResponse
Example Usage Code Snippet
POST
/envelope/{envelope_id}/document
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ | |
addEnvelopeDocumentRequest | AddEnvelopeDocumentRequest | ✅ | Request Body |
Document
Example Usage Code Snippet
PUT
/envelope/{envelope_id}/dynamic_fields
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ | |
setEnvelopeDynamicFieldsRequest | SetEnvelopeDynamicFieldsRequest | ✅ | Request Body |
Envelope
Example Usage Code Snippet
POST
/envelope/{envelope_id}/signing_steps
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ | |
addEnvelopeSigningStepsRequest | AddEnvelopeSigningStepsRequest | ✅ | Request Body |
Envelope
Example Usage Code Snippet
POST
/envelope/{envelope_id}/send
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ |
Envelope
Example Usage Code Snippet
POST
/envelope/{envelope_id}/duplicate
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ |
Envelope
Example Usage Code Snippet
PUT
/envelope/{envelope_id}/void
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ |
Envelope
Example Usage Code Snippet
PUT
/envelope/{envelope_id}/rename
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ | |
renameEnvelopeRequest | RenameEnvelopeRequest | ✅ | Request Body |
Envelope
Example Usage Code Snippet
PUT
/envelope/{envelope_id}/set_comment
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ | |
setEnvelopeCommentRequest | SetEnvelopeCommentRequest | ✅ | Request Body |
Envelope
Example Usage Code Snippet
PUT
/envelope/{envelope_id}/set_notification
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ | |
envelopeNotification | EnvelopeNotification | ✅ | Request Body |
Envelope
Example Usage Code Snippet
PUT
/envelope/{envelope_id}/set_expiration_date
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ | |
setEnvelopeExpirationRequest | SetEnvelopeExpirationRequest | ✅ | Request Body |
Envelope
Example Usage Code Snippet
PUT
/envelope/{envelope_id}/set_legality_level
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ | |
setEnvelopeLegalityLevelRequest | SetEnvelopeLegalityLevelRequest | ✅ | Request Body |
Envelope
Example Usage Code Snippet
GET
/envelope/{envelope_id}/annotations
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ | ID of the envelope |
List<Annotation>
Example Usage Code Snippet
GET
/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
POST
/envelope/{envelope_id}/annotation
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ | ID of the envelope |
addAnnotationRequest | AddAnnotationRequest | ✅ | Request Body |
Annotation
Example Usage Code Snippet
DELETE
/envelope/{envelope_id}/annotation/{annotation_id}
Name | Type | Required | Description |
---|---|---|---|
envelopeId | String | ✅ | ID of the envelope |
annotationId | String | ✅ | ID of the annotation to delete |
POST
/template
Name | Type | Required | Description |
---|---|---|---|
createTemplateRequest | CreateTemplateRequest | ✅ | Request Body |
Template
Example Usage Code Snippet
POST
/templates
Name | Type | Required | Description |
---|---|---|---|
listTemplatesRequest | ListTemplatesRequest | ❌ | Request Body |
ListTemplatesResponse
Example Usage Code Snippet
GET
/template/{template_id}
Name | Type | Required | Description |
---|---|---|---|
templateId | String | ✅ |
Template
Example Usage Code Snippet
DELETE
/template/{template_id}
Name | Type | Required | Description |
---|---|---|---|
templateId | String | ✅ |
POST
/template/{template_id}/duplicate
Name | Type | Required | Description |
---|---|---|---|
templateId | String | ✅ |
Template
Example Usage Code Snippet
POST
/template/{template_id}/document
Name | Type | Required | Description |
---|---|---|---|
templateId | String | ✅ | |
addTemplateDocumentRequest | AddTemplateDocumentRequest | ✅ | Request Body |
Document
Example Usage Code Snippet
GET
/template/{template_id}/document/{document_id}
Name | Type | Required | Description |
---|---|---|---|
templateId | String | ✅ | |
documentId | String | ✅ |
Document
Example Usage Code Snippet
GET
/template/{template_id}/documents
Name | Type | Required | Description |
---|---|---|---|
templateId | String | ✅ |
ListTemplateDocumentsResponse
Example Usage Code Snippet
POST
/template/{template_id}/signing_steps
Name | Type | Required | Description |
---|---|---|---|
templateId | String | ✅ | |
addTemplateSigningStepsRequest | AddTemplateSigningStepsRequest | ✅ | Request Body |
Template
Example Usage Code Snippet
PUT
/template/{template_id}/rename
Name | Type | Required | Description |
---|---|---|---|
templateId | String | ✅ | |
renameTemplateRequest | RenameTemplateRequest | ✅ | Request Body |
Template
Example Usage Code Snippet
PUT
/template/{template_id}/set_comment
Name | Type | Required | Description |
---|---|---|---|
templateId | String | ✅ | |
setTemplateCommentRequest | SetTemplateCommentRequest | ✅ | Request Body |
Template
Example Usage Code Snippet
PUT
/template/{template_id}/set_notification
Name | Type | Required | Description |
---|---|---|---|
templateId | String | ✅ | |
envelopeNotification | EnvelopeNotification | ✅ | Request Body |
Template
Example Usage Code Snippet
GET
/template/{template_id}/annotations
Name | Type | Required | Description |
---|---|---|---|
templateId | String | ✅ | ID of the template |
ListTemplateAnnotationsResponse
Example Usage Code Snippet
GET
/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
POST
/template/{template_id}/annotation
Name | Type | Required | Description |
---|---|---|---|
templateId | String | ✅ | ID of the template |
addAnnotationRequest | AddAnnotationRequest | ✅ | Request Body |
Annotation
Example Usage Code Snippet
DELETE
/template/{template_id}/annotation/{annotation_id}
Name | Type | Required | Description |
---|---|---|---|
templateId | String | ✅ | ID of the template |
annotationId | String | ✅ | ID of the annotation to delete |
POST
/webhook
Name | Type | Required | Description |
---|---|---|---|
createWebhookRequest | CreateWebhookRequest | ✅ | Request Body |
Webhook
Example Usage Code Snippet
POST
/webhooks
Name | Type | Required | Description |
---|---|---|---|
listWebhooksRequest | ListWebhooksRequest | ❌ | Request Body |
ListWebhooksResponse
Example Usage Code Snippet
DELETE
/webhook/{webhook_id}
Name | Type | Required | Description |
---|---|---|---|
webhookId | String | ✅ |
Name | Type | Required | Description |
---|---|---|---|
id | String | ❌ | Unique identifier of the document |
name | String | ❌ | Name of the document |
filename | String | ❌ | Filename of the document |
pageCount | Long | ❌ | Number of pages in the document |
pages | List<Page> | ❌ | List of pages in the document |
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 | Long | ❌ | Unix timestamp of the expiration date |
comment | String | ❌ | Comment for the envelope |
sandbox | Boolean | ❌ | Whether the envelope is created in sandbox mode |
Name | Type | Required | Description |
---|---|---|---|
name | String | ❌ | Name of the envelope |
tags | List<String> | ❌ | List of tags |
comment | String | ❌ | Comment of the envelope |
ids | List<String> | ❌ | List of envelope IDs |
statuses | List<EnvelopeStatus> | ❌ | List of envelope statuses |
folderIds | List<String> | ❌ | List of folder IDs |
onlyRootFolder | Boolean | ❌ | Whether to only list envelopes in the root folder |
dateFrom | Long | ❌ | Unix timestamp of the start date |
dateTo | Long | ❌ | Unix timestamp of the end date |
uid | String | ❌ | Unique identifier of the user |
first | Long | ❌ | |
last | Long | ❌ | |
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 |
Name | Type | Required | Description |
---|---|---|---|
subject | String | ❌ | Subject of the notification |
message | String | ❌ | Message of the notification |
reminderInterval | Long | ❌ | Interval in days to send reminder |
Name | Type | Required | Description |
---|---|---|---|
name | String | ❌ | Name of the template |
tags | List<String> | ❌ | List of tag templates |
ids | List<String> | ❌ | List of templates IDs |
first | Long | ❌ | |
last | Long | ❌ | |
after | String | ❌ | |
before | String | ❌ | |
orderField | TemplateOrderField | ❌ | Field to order templates by |
ascending | Boolean | ❌ | Whether to order templates in ascending order |
Name | Type | Required | Description |
---|---|---|---|
comment | String | ✅ | Comment for the template |
Name | Type | Required | Description |
---|---|---|---|
id | String | ❌ | Unique identifier of the template |
name | String | ❌ | Name of the template |
comment | String | ❌ | Comment for the template |
pages | Long | ❌ | 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 | Long | ❌ | Unix timestamp of the creation date |
updatedAt | Long | ❌ | Unix timestamp of the last modification date |
expirationDelay | Long | ❌ | Expiration delay added to the current time when an envelope is created from this template |
numRecipients | Long | ❌ | Number of recipients in the envelope |
signingSteps | List<TemplateSigningStep> | ❌ | |
documents | List<Document> | ❌ | |
notification | EnvelopeNotification | ❌ | |
dynamicFields | List<String> | ❌ | List of dynamic fields |
Name | Type | Required | Description |
---|---|---|---|
SMS | String | ✅ | “SMS” |
PASSCODE | String | ✅ | “PASSCODE” |
Name | Type | Required | Description |
---|---|---|---|
signingSteps | List<SigningStep> | ❌ | List of signing steps |
Name | Type | Required | Description |
---|---|---|---|
UNKNOWN | String | ✅ | “UNKNOWN” |
SERIF | String | ✅ | “SERIF” |
SANS | String | ✅ | “SANS” |
MONO | String | ✅ | “MONO” |
Name | Type | Required | Description |
---|---|---|---|
signingSteps | List<TemplateSigningStep> | ✅ | List of signing steps |
Name | Type | Required | Description |
---|---|---|---|
comment | String | ✅ | Comment for the envelope |
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” |
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” |
Name | Type | Required | Description |
---|---|---|---|
file | byte[] | ❌ | File to upload in binary format |
Name | Type | Required | Description |
---|---|---|---|
webhookId | String | ❌ | ID of the webhook |
event | WebhookEvent | ❌ | Event of the webhook |
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) |
Name | Type | Required | Description |
---|---|---|---|
expiresAt | Long | ✅ | Unix timestamp of the expiration date |
Name | Type | Required | Description |
---|---|---|---|
size | Double | ❌ | Font size of the text in pt |
color | Double | ❌ | 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 | ❌ |
Name | Type | Required | Description |
---|---|---|---|
checked | Boolean | ❌ | Whether the checkbox is checked |
style | AnnotationCheckboxStyle | ❌ | Style of the checkbox |
Name | Type | Required | Description |
---|---|---|---|
id | String | ❌ | Unique identifier of the envelope |
name | String | ❌ | Name of the envelope |
comment | String | ❌ | Comment for the envelope |
pages | Long | ❌ | 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 | Long | ❌ | Unix timestamp of the creation date |
updatedAt | Long | ❌ | Unix timestamp of the last modification date |
expiresAt | Long | ❌ | Unix timestamp of the expiration date |
numRecipients | Long | ❌ | Number of recipients in the envelope |
isDuplicable | Boolean | ❌ | Whether the envelope can be duplicated |
signingSteps | List<SigningStep> | ❌ | |
documents | List<Document> | ❌ | |
notification | EnvelopeNotification | ❌ |
Name | Type | Required | Description |
---|---|---|---|
file | byte[] | ✅ | File to upload in binary format |
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) |
Name | Type | Required | Description |
---|---|---|---|
documentId | String | ✅ | ID of the document |
page | Long | ✅ | Page number where the annotation is placed |
x | Double | ✅ | X coordinate of the annotation (in % of the page width from 0 to 100) from the top left corner |
y | Double | ✅ | Y coordinate of the annotation (in % of the page height from 0 to 100) from the top left corner |
width | Double | ✅ | Width of the annotation (in % of the page width from 0 to 100) |
height | Double | ✅ | 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) |
Name | Type | Required | Description |
---|---|---|---|
annotations | List<Annotation> | ❌ |
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” |
Name | Type | Required | Description |
---|---|---|---|
type | RecipientVerificationType | ❌ | Type of signature verification (SMS sends a code via SMS, PASSCODE requires a code to be entered) |
value | String | ❌ |
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” |
Name | Type | Required | Description |
---|---|---|---|
recipients | List<Recipient> | ❌ | List of recipients |
Name | Type | Required | Description |
---|---|---|---|
size | Double | ❌ | 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 | Long | ❌ | 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) |
Name | Type | Required | Description |
---|---|---|---|
name | String | ✅ |
Name | Type | Required | Description |
---|---|---|---|
documents | List<Document> | ❌ |
Name | Type | Required | Description |
---|---|---|---|
id | String | ❌ | Unique identifier of the annotation initials |
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 |
Name | Type | Required | Description |
---|---|---|---|
TEXT | String | ✅ | “TEXT” |
SIGNATURE | String | ✅ | “SIGNATURE” |
INITIALS | String | ✅ | “INITIALS” |
CHECKBOX | String | ✅ | “CHECKBOX” |
DATE | String | ✅ | “DATE” |
Name | Type | Required | Description |
---|---|---|---|
id | String | ❌ | Unique identifier of the webhook |
event | WebhookEvent | ❌ | Event of the webhook |
target | String | ❌ | Target URL of the webhook |
Name | Type | Required | Description |
---|---|---|---|
name | String | ✅ | Name of the template |
Name | Type | Required | Description |
---|---|---|---|
hasNextPage | Boolean | ❌ | Whether there is a next page |
hasPreviousPage | Boolean | ❌ | Whether there is a previous page |
templates | List<Template> | ❌ |
Name | Type | Required | Description |
---|---|---|---|
SIGNER | String | ✅ | “SIGNER” |
RECEIVES_COPY | String | ✅ | “RECEIVES_COPY” |
IN_PERSON_SIGNER | String | ✅ | “IN_PERSON_SIGNER” |
Name | Type | Required | Description |
---|---|---|---|
id | String | ❌ | Unique identifier of the annotation |
recipientId | String | ❌ | ID of the recipient |
documentId | String | ❌ | ID of the document |
page | Long | ❌ | Page number where the annotation is placed |
x | Double | ❌ | X coordinate of the annotation (in % of the page width from 0 to 100) from the top left corner |
y | Double | ❌ | Y coordinate of the annotation (in % of the page height from 0 to 100) from the top left corner |
width | Double | ❌ | Width of the annotation (in % of the page width from 0 to 100) |
height | Double | ❌ | 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) |
Name | Type | Required | Description |
---|---|---|---|
name | String | ❌ | Name of the dynamic field |
value | String | ❌ | Value of the dynamic field |
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” |
Name | Type | Required | Description |
---|---|---|---|
REQUEST_SIGNATURE | String | ✅ | “REQUEST_SIGNATURE” |
SIGN_MYSELF | String | ✅ | “SIGN_MYSELF” |
Name | Type | Required | Description |
---|---|---|---|
SES | String | ✅ | “SES” |
QES_EIDAS | String | ✅ | “QES_EIDAS” |
QES_ZERTES | String | ✅ | “QES_ZERTES” |
Name | Type | Required | Description |
---|---|---|---|
SIGNER | String | ✅ | “SIGNER” |
RECEIVES_COPY | String | ✅ | “RECEIVES_COPY” |
IN_PERSON_SIGNER | String | ✅ | “IN_PERSON_SIGNER” |
Name | Type | Required | Description |
---|---|---|---|
dynamicFields | List<DynamicField> | ✅ | List of dynamic fields |
Name | Type | Required | Description |
---|---|---|---|
width | Long | ❌ | Width of the page in pixels |
height | Long | ❌ | Height of the page in pixels |
Name | Type | Required | Description |
---|---|---|---|
recipients | List<TemplateRecipient> | ❌ | List of recipients |
Name | Type | Required | Description |
---|---|---|---|
hasNextPage | Boolean | ❌ | Whether there is a next page |
hasPreviousPage | Boolean | ❌ | Whether there is a previous page |
envelopes | List<Envelope> | ❌ |
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 | ❌ |
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” |
Name | Type | Required | Description |
---|---|---|---|
event | WebhookEvent | ✅ | Event of the webhook |
target | String | ✅ | URL of the webhook target |
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 |
Name | Type | Required | Description |
---|---|---|---|
annotations | List<Annotation> | ❌ |
Name | Type | Required | Description |
---|---|---|---|
name | String | ❌ | Name of the envelope |
Name | Type | Required | Description |
---|---|---|---|
annotations | List<Annotation> | ❌ |
Name | Type | Required | Description |
---|---|---|---|
documents | List<Document> | ❌ |
Name | Type | Required | Description |
---|---|---|---|
webhooks | List<Webhook> | ❌ |
Name | Type | Required | Description |
---|---|---|---|
id | String | ❌ | Unique identifier of the annotation signature |