A list of all methods in the SignplusService service. Click on the method name to view detailed information about that method.

MethodsDescription
create_envelopeCreate new envelope
create_envelope_from_templateCreate new envelope from template
list_envelopesList envelopes
get_envelopeGet envelope
delete_envelopeDelete envelope
get_envelope_documentGet envelope document
get_envelope_documentsGet envelope documents
add_envelope_documentAdd envelope document
set_envelope_dynamic_fieldsSet envelope dynamic fields
add_envelope_signing_stepsAdd envelope signing steps
send_envelopeSend envelope for signature
duplicate_envelopeDuplicate envelope
void_envelopeVoid envelope
rename_envelopeRename envelope
set_envelope_commentSet envelope comment
set_envelope_notificationSet envelope notification
set_envelope_expiration_dateSet envelope expiration date
set_envelope_legality_levelSet envelope legality level
get_envelope_annotationsGet envelope annotations
get_envelope_document_annotationsGet envelope document annotations
add_envelope_annotationAdd envelope annotation
delete_envelope_annotationDelete envelope annotation
create_templateCreate new template
list_templatesList templates
get_templateGet template
delete_templateDelete template
duplicate_templateDuplicate template
add_template_documentAdd template document
get_template_documentGet template document
get_template_documentsGet template documents
add_template_signing_stepsAdd template signing steps
rename_templateRename template
set_template_commentSet template comment
set_template_notificationSet template notification
get_template_annotationsGet template annotations
get_document_template_annotationsGet document template annotations
add_template_annotationAdd template annotation
delete_template_annotationDelete template annotation
create_webhookCreate webhook
list_webhooksList webhooks
delete_webhookDelete webhook

create_envelope

Create new envelope

  • HTTP Method: POST
  • Endpoint: /envelope

Parameters

NameTypeRequiredDescription
bodyCreateEnvelopeRequest

The request body.

Return Type

Envelope

Example Usage Code Snippet

import { CreateEnvelopeRequest, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const envelopeFlowType = EnvelopeFlowType.REQUESTSIGNATURE;

  const envelopeLegalityLevel = EnvelopeLegalityLevel.SES;

  const input: CreateEnvelopeRequest = {
    name: 'name',
    flowType: envelopeFlowType,
    legalityLevel: envelopeLegalityLevel,
    expiresAt: 8,
    comment: 'comment',
    sandbox: true,
  };

  const { data } = await signplus.signplus.createEnvelope(input);

  console.log(data);
})();

create_envelope_from_template

Create new envelope from template

  • HTTP Method: POST
  • Endpoint: /envelope/from_template/{template_id}

Parameters

NameTypeRequiredDescription
bodyCreateEnvelopeFromTemplateRequest

The request body.
templateIdstring

Return Type

Envelope

Example Usage Code Snippet

import { CreateEnvelopeFromTemplateRequest, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const input: CreateEnvelopeFromTemplateRequest = {
    name: 'name',
    comment: 'comment',
    sandbox: true,
  };

  const { data } = await signplus.signplus.createEnvelopeFromTemplate('template_id', input);

  console.log(data);
})();

list_envelopes

List envelopes

  • HTTP Method: POST
  • Endpoint: /envelopes

Parameters

NameTypeRequiredDescription
bodyListEnvelopesRequest

The request body.

Return Type

ListEnvelopesResponse

Example Usage Code Snippet

import { ListEnvelopesRequest, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const envelopeStatus = EnvelopeStatus.DRAFT;

  const envelopeOrderField = EnvelopeOrderField.CREATIONDATE;

  const input: ListEnvelopesRequest = {
    name: 'name',
    tags: ['tags'],
    comment: 'comment',
    ids: ['ids'],
    statuses: [envelopeStatus],
    folderIds: ['folder_ids'],
    onlyRootFolder: true,
    dateFrom: 4,
    dateTo: 7,
    uid: 'uid',
    first: 8,
    last: 9,
    after: 'after',
    before: 'before',
    orderField: envelopeOrderField,
    ascending: true,
    includeTrash: true,
  };

  const { data } = await signplus.signplus.listEnvelopes(input);

  console.log(data);
})();

get_envelope

Get envelope

  • HTTP Method: GET
  • Endpoint: /envelope/{envelope_id}

Parameters

NameTypeRequiredDescription
envelopeIdstring

Return Type

Envelope

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.getEnvelope('envelope_id');

  console.log(data);
})();

delete_envelope

Delete envelope

  • HTTP Method: DELETE
  • Endpoint: /envelope/{envelope_id}

Parameters

NameTypeRequiredDescription
envelopeIdstring

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.deleteEnvelope('envelope_id');

  console.log(data);
})();

get_envelope_document

Get envelope document

  • HTTP Method: GET
  • Endpoint: /envelope/{envelope_id}/document/{document_id}

Parameters

NameTypeRequiredDescription
envelopeIdstring

documentIdstring

Return Type

Document

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.getEnvelopeDocument('envelope_id', 'document_id');

  console.log(data);
})();

get_envelope_documents

Get envelope documents

  • HTTP Method: GET
  • Endpoint: /envelope/{envelope_id}/documents

Parameters

NameTypeRequiredDescription
envelopeIdstring

Return Type

ListEnvelopeDocumentsResponse

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.getEnvelopeDocuments('envelope_id');

  console.log(data);
})();

add_envelope_document

Add envelope document

  • HTTP Method: POST
  • Endpoint: /envelope/{envelope_id}/document

Parameters

NameTypeRequiredDescription
bodyAddEnvelopeDocumentRequest

The request body.
envelopeIdstring

Return Type

Document

Example Usage Code Snippet

import { AddEnvelopeDocumentRequest, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const input: AddEnvelopeDocumentRequest = {
    file: file,
  };

  const { data } = await signplus.signplus.addEnvelopeDocument('envelope_id', input);

  console.log(data);
})();

set_envelope_dynamic_fields

Set envelope dynamic fields

  • HTTP Method: PUT
  • Endpoint: /envelope/{envelope_id}/dynamic_fields

Parameters

NameTypeRequiredDescription
bodySetEnvelopeDynamicFieldsRequest

The request body.
envelopeIdstring

Return Type

Envelope

Example Usage Code Snippet

import { DynamicField, SetEnvelopeDynamicFieldsRequest, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const dynamicField: DynamicField = {
    name: 'name',
    value: 'value',
  };

  const input: SetEnvelopeDynamicFieldsRequest = {
    dynamicFields: [dynamicField],
  };

  const { data } = await signplus.signplus.setEnvelopeDynamicFields('envelope_id', input);

  console.log(data);
})();

add_envelope_signing_steps

Add envelope signing steps

  • HTTP Method: POST
  • Endpoint: /envelope/{envelope_id}/signing_steps

Parameters

NameTypeRequiredDescription
bodyAddEnvelopeSigningStepsRequest

The request body.
envelopeIdstring

Return Type

Envelope

Example Usage Code Snippet

import { AddEnvelopeSigningStepsRequest, SigningStep, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const recipientRole = RecipientRole.SIGNER;

  const recipientVerificationType = RecipientVerificationType.SMS;

  const recipientVerification: RecipientVerification = {
    type: recipientVerificationType,
    value: 'value',
  };

  const recipient: Recipient = {
    id: 'id',
    uid: 'uid',
    name: 'name',
    email: 'email',
    role: recipientRole,
    verification: recipientVerification,
  };

  const signingStep: SigningStep = {
    recipients: [recipient],
  };

  const input: AddEnvelopeSigningStepsRequest = {
    signingSteps: [signingStep],
  };

  const { data } = await signplus.signplus.addEnvelopeSigningSteps('envelope_id', input);

  console.log(data);
})();

send_envelope

Send envelope for signature

  • HTTP Method: POST
  • Endpoint: /envelope/{envelope_id}/send

Parameters

NameTypeRequiredDescription
envelopeIdstring

Return Type

Envelope

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.sendEnvelope('envelope_id');

  console.log(data);
})();

duplicate_envelope

Duplicate envelope

  • HTTP Method: POST
  • Endpoint: /envelope/{envelope_id}/duplicate

Parameters

NameTypeRequiredDescription
envelopeIdstring

Return Type

Envelope

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.duplicateEnvelope('envelope_id');

  console.log(data);
})();

void_envelope

Void envelope

  • HTTP Method: PUT
  • Endpoint: /envelope/{envelope_id}/void

Parameters

NameTypeRequiredDescription
envelopeIdstring

Return Type

Envelope

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.voidEnvelope('envelope_id');

  console.log(data);
})();

rename_envelope

Rename envelope

  • HTTP Method: PUT
  • Endpoint: /envelope/{envelope_id}/rename

Parameters

NameTypeRequiredDescription
bodyRenameEnvelopeRequest

The request body.
envelopeIdstring

Return Type

Envelope

Example Usage Code Snippet

import { RenameEnvelopeRequest, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const input: RenameEnvelopeRequest = {
    name: 'name',
  };

  const { data } = await signplus.signplus.renameEnvelope('envelope_id', input);

  console.log(data);
})();

set_envelope_comment

Set envelope comment

  • HTTP Method: PUT
  • Endpoint: /envelope/{envelope_id}/set_comment

Parameters

NameTypeRequiredDescription
bodySetEnvelopeCommentRequest

The request body.
envelopeIdstring

Return Type

Envelope

Example Usage Code Snippet

import { SetEnvelopeCommentRequest, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const input: SetEnvelopeCommentRequest = {
    comment: 'comment',
  };

  const { data } = await signplus.signplus.setEnvelopeComment('envelope_id', input);

  console.log(data);
})();

set_envelope_notification

Set envelope notification

  • HTTP Method: PUT
  • Endpoint: /envelope/{envelope_id}/set_notification

Parameters

NameTypeRequiredDescription
bodyEnvelopeNotification

The request body.
envelopeIdstring

Return Type

Envelope

Example Usage Code Snippet

import { EnvelopeNotification, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const input: EnvelopeNotification = {
    subject: 'subject',
    message: 'message',
    reminderInterval: 1,
  };

  const { data } = await signplus.signplus.setEnvelopeNotification('envelope_id', input);

  console.log(data);
})();

set_envelope_expiration_date

Set envelope expiration date

  • HTTP Method: PUT
  • Endpoint: /envelope/{envelope_id}/set_expiration_date

Parameters

NameTypeRequiredDescription
bodySetEnvelopeExpirationRequest

The request body.
envelopeIdstring

Return Type

Envelope

Example Usage Code Snippet

import { SetEnvelopeExpirationRequest, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const input: SetEnvelopeExpirationRequest = {
    expiresAt: 6,
  };

  const { data } = await signplus.signplus.setEnvelopeExpirationDate('envelope_id', input);

  console.log(data);
})();

set_envelope_legality_level

Set envelope legality level

  • HTTP Method: PUT
  • Endpoint: /envelope/{envelope_id}/set_legality_level

Parameters

NameTypeRequiredDescription
bodySetEnvelopeLegalityLevelRequest

The request body.
envelopeIdstring

Return Type

Envelope

Example Usage Code Snippet

import { SetEnvelopeLegalityLevelRequest, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const envelopeLegalityLevel = EnvelopeLegalityLevel.SES;

  const input: SetEnvelopeLegalityLevelRequest = {
    legalityLevel: envelopeLegalityLevel,
  };

  const { data } = await signplus.signplus.setEnvelopeLegalityLevel('envelope_id', input);

  console.log(data);
})();

get_envelope_annotations

Get envelope annotations

  • HTTP Method: GET
  • Endpoint: /envelope/{envelope_id}/annotations

Parameters

NameTypeRequiredDescription
envelopeIdstring

ID of the envelope

Return Type

Annotation[]

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.getEnvelopeAnnotations('envelope_id');

  console.log(data);
})();

get_envelope_document_annotations

Get envelope document annotations

  • HTTP Method: GET
  • Endpoint: /envelope/{envelope_id}/annotations/{document_id}

Parameters

NameTypeRequiredDescription
envelopeIdstring

ID of the envelope
documentIdstring

ID of document

Return Type

ListEnvelopeDocumentAnnotationsResponse

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.getEnvelopeDocumentAnnotations('envelope_id', 'document_id');

  console.log(data);
})();

add_envelope_annotation

Add envelope annotation

  • HTTP Method: POST
  • Endpoint: /envelope/{envelope_id}/annotation

Parameters

NameTypeRequiredDescription
bodyAddAnnotationRequest

The request body.
envelopeIdstring

ID of the envelope

Return Type

Annotation

Example Usage Code Snippet

import {
  AddAnnotationRequest,
  AnnotationCheckbox,
  AnnotationDateTime,
  AnnotationInitials,
  AnnotationSignature,
  AnnotationText,
  Signplus,
} from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const annotationType = AnnotationType.TEXT;

  const annotationSignature: AnnotationSignature = {
    id: 'id',
  };

  const annotationInitials: AnnotationInitials = {
    id: 'id',
  };

  const annotationFontFamily = AnnotationFontFamily.UNKNOWN;

  const annotationFont: AnnotationFont = {
    family: annotationFontFamily,
    italic: true,
    bold: true,
  };

  const annotationText: AnnotationText = {
    size: 0.75,
    color: 0.4,
    value: 'value',
    tooltip: 'tooltip',
    dynamicFieldName: 'dynamic_field_name',
    font: annotationFont,
  };

  const annotationDateTimeFormat = AnnotationDateTimeFormat.DMYNUMERICSLASH;

  const annotationDateTime: AnnotationDateTime = {
    size: 2.34,
    font: annotationFont,
    color: 'color',
    autoFill: true,
    timezone: 'timezone',
    timestamp: 6,
    format: annotationDateTimeFormat,
  };

  const annotationCheckboxStyle = AnnotationCheckboxStyle.CIRCLECHECK;

  const annotationCheckbox: AnnotationCheckbox = {
    checked: true,
    style: annotationCheckboxStyle,
  };

  const input: AddAnnotationRequest = {
    recipientId: 'recipient_id',
    documentId: 'document_id',
    page: 5,
    x: 2.83,
    y: 1.27,
    width: 5.18,
    height: 4.34,
    required: true,
    type: annotationType,
    signature: annotationSignature,
    initials: annotationInitials,
    text: annotationText,
    datetime: annotationDateTime,
    checkbox: annotationCheckbox,
  };

  const { data } = await signplus.signplus.addEnvelopeAnnotation('envelope_id', input);

  console.log(data);
})();

delete_envelope_annotation

Delete envelope annotation

  • HTTP Method: DELETE
  • Endpoint: /envelope/{envelope_id}/annotation/{annotation_id}

Parameters

NameTypeRequiredDescription
envelopeIdstring

ID of the envelope
annotationIdstring

ID of the annotation to delete

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.deleteEnvelopeAnnotation('envelope_id', 'annotation_id');

  console.log(data);
})();

create_template

Create new template

  • HTTP Method: POST
  • Endpoint: /template

Parameters

NameTypeRequiredDescription
bodyCreateTemplateRequest

The request body.

Return Type

Template

Example Usage Code Snippet

import { CreateTemplateRequest, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const input: CreateTemplateRequest = {
    name: 'name',
  };

  const { data } = await signplus.signplus.createTemplate(input);

  console.log(data);
})();

list_templates

List templates

  • HTTP Method: POST
  • Endpoint: /templates

Parameters

NameTypeRequiredDescription
bodyListTemplatesRequest

The request body.

Return Type

ListTemplatesResponse

Example Usage Code Snippet

import { ListTemplatesRequest, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const templateOrderField = TemplateOrderField.TEMPLATEID;

  const input: ListTemplatesRequest = {
    name: 'name',
    tags: ['tags'],
    ids: ['ids'],
    first: 2,
    last: 123,
    after: 'after',
    before: 'before',
    orderField: templateOrderField,
    ascending: true,
  };

  const { data } = await signplus.signplus.listTemplates(input);

  console.log(data);
})();

get_template

Get template

  • HTTP Method: GET
  • Endpoint: /template/{template_id}

Parameters

NameTypeRequiredDescription
templateIdstring

Return Type

Template

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.getTemplate('template_id');

  console.log(data);
})();

delete_template

Delete template

  • HTTP Method: DELETE
  • Endpoint: /template/{template_id}

Parameters

NameTypeRequiredDescription
templateIdstring

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.deleteTemplate('template_id');

  console.log(data);
})();

duplicate_template

Duplicate template

  • HTTP Method: POST
  • Endpoint: /template/{template_id}/duplicate

Parameters

NameTypeRequiredDescription
templateIdstring

Return Type

Template

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.duplicateTemplate('template_id');

  console.log(data);
})();

add_template_document

Add template document

  • HTTP Method: POST
  • Endpoint: /template/{template_id}/document

Parameters

NameTypeRequiredDescription
bodyAddTemplateDocumentRequest

The request body.
templateIdstring

Return Type

Document

Example Usage Code Snippet

import { AddTemplateDocumentRequest, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const input: AddTemplateDocumentRequest = {
    file: file,
  };

  const { data } = await signplus.signplus.addTemplateDocument('template_id', input);

  console.log(data);
})();

get_template_document

Get template document

  • HTTP Method: GET
  • Endpoint: /template/{template_id}/document/{document_id}

Parameters

NameTypeRequiredDescription
templateIdstring

documentIdstring

Return Type

Document

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.getTemplateDocument('template_id', 'document_id');

  console.log(data);
})();

get_template_documents

Get template documents

  • HTTP Method: GET
  • Endpoint: /template/{template_id}/documents

Parameters

NameTypeRequiredDescription
templateIdstring

Return Type

ListTemplateDocumentsResponse

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.getTemplateDocuments('template_id');

  console.log(data);
})();

add_template_signing_steps

Add template signing steps

  • HTTP Method: POST
  • Endpoint: /template/{template_id}/signing_steps

Parameters

NameTypeRequiredDescription
bodyAddTemplateSigningStepsRequest

The request body.
templateIdstring

Return Type

Template

Example Usage Code Snippet

import { AddTemplateSigningStepsRequest, Signplus, TemplateSigningStep } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const templateRecipientRole = TemplateRecipientRole.SIGNER;

  const templateRecipient: TemplateRecipient = {
    id: 'id',
    uid: 'uid',
    name: 'name',
    email: 'email',
    role: templateRecipientRole,
  };

  const templateSigningStep: TemplateSigningStep = {
    recipients: [templateRecipient],
  };

  const input: AddTemplateSigningStepsRequest = {
    signingSteps: [templateSigningStep],
  };

  const { data } = await signplus.signplus.addTemplateSigningSteps('template_id', input);

  console.log(data);
})();

rename_template

Rename template

  • HTTP Method: PUT
  • Endpoint: /template/{template_id}/rename

Parameters

NameTypeRequiredDescription
bodyRenameTemplateRequest

The request body.
templateIdstring

Return Type

Template

Example Usage Code Snippet

import { RenameTemplateRequest, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const input: RenameTemplateRequest = {
    name: 'name',
  };

  const { data } = await signplus.signplus.renameTemplate('template_id', input);

  console.log(data);
})();

set_template_comment

Set template comment

  • HTTP Method: PUT
  • Endpoint: /template/{template_id}/set_comment

Parameters

NameTypeRequiredDescription
bodySetTemplateCommentRequest

The request body.
templateIdstring

Return Type

Template

Example Usage Code Snippet

import { SetTemplateCommentRequest, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const input: SetTemplateCommentRequest = {
    comment: 'comment',
  };

  const { data } = await signplus.signplus.setTemplateComment('template_id', input);

  console.log(data);
})();

set_template_notification

Set template notification

  • HTTP Method: PUT
  • Endpoint: /template/{template_id}/set_notification

Parameters

NameTypeRequiredDescription
bodyEnvelopeNotification

The request body.
templateIdstring

Return Type

Template

Example Usage Code Snippet

import { EnvelopeNotification, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const input: EnvelopeNotification = {
    subject: 'subject',
    message: 'message',
    reminderInterval: 1,
  };

  const { data } = await signplus.signplus.setTemplateNotification('template_id', input);

  console.log(data);
})();

get_template_annotations

Get template annotations

  • HTTP Method: GET
  • Endpoint: /template/{template_id}/annotations

Parameters

NameTypeRequiredDescription
templateIdstring

ID of the template

Return Type

ListTemplateAnnotationsResponse

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.getTemplateAnnotations('template_id');

  console.log(data);
})();

get_document_template_annotations

Get document template annotations

  • HTTP Method: GET
  • Endpoint: /template/{template_id}/annotations/{document_id}

Parameters

NameTypeRequiredDescription
templateIdstring

ID of the template
documentIdstring

ID of document

Return Type

ListTemplateDocumentAnnotationsResponse

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.getDocumentTemplateAnnotations('template_id', 'document_id');

  console.log(data);
})();

add_template_annotation

Add template annotation

  • HTTP Method: POST
  • Endpoint: /template/{template_id}/annotation

Parameters

NameTypeRequiredDescription
bodyAddAnnotationRequest

The request body.
templateIdstring

ID of the template

Return Type

Annotation

Example Usage Code Snippet

import {
  AddAnnotationRequest,
  AnnotationCheckbox,
  AnnotationDateTime,
  AnnotationInitials,
  AnnotationSignature,
  AnnotationText,
  Signplus,
} from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const annotationType = AnnotationType.TEXT;

  const annotationSignature: AnnotationSignature = {
    id: 'id',
  };

  const annotationInitials: AnnotationInitials = {
    id: 'id',
  };

  const annotationFontFamily = AnnotationFontFamily.UNKNOWN;

  const annotationFont: AnnotationFont = {
    family: annotationFontFamily,
    italic: true,
    bold: true,
  };

  const annotationText: AnnotationText = {
    size: 0.75,
    color: 0.4,
    value: 'value',
    tooltip: 'tooltip',
    dynamicFieldName: 'dynamic_field_name',
    font: annotationFont,
  };

  const annotationDateTimeFormat = AnnotationDateTimeFormat.DMYNUMERICSLASH;

  const annotationDateTime: AnnotationDateTime = {
    size: 2.34,
    font: annotationFont,
    color: 'color',
    autoFill: true,
    timezone: 'timezone',
    timestamp: 6,
    format: annotationDateTimeFormat,
  };

  const annotationCheckboxStyle = AnnotationCheckboxStyle.CIRCLECHECK;

  const annotationCheckbox: AnnotationCheckbox = {
    checked: true,
    style: annotationCheckboxStyle,
  };

  const input: AddAnnotationRequest = {
    recipientId: 'recipient_id',
    documentId: 'document_id',
    page: 5,
    x: 2.83,
    y: 1.27,
    width: 5.18,
    height: 4.34,
    required: true,
    type: annotationType,
    signature: annotationSignature,
    initials: annotationInitials,
    text: annotationText,
    datetime: annotationDateTime,
    checkbox: annotationCheckbox,
  };

  const { data } = await signplus.signplus.addTemplateAnnotation('template_id', input);

  console.log(data);
})();

delete_template_annotation

Delete template annotation

  • HTTP Method: DELETE
  • Endpoint: /template/{template_id}/annotation/{annotation_id}

Parameters

NameTypeRequiredDescription
templateIdstring

ID of the template
annotationIdstring

ID of the annotation to delete

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.deleteTemplateAnnotation('template_id', 'annotation_id');

  console.log(data);
})();

create_webhook

Create webhook

  • HTTP Method: POST
  • Endpoint: /webhook

Parameters

NameTypeRequiredDescription
bodyCreateWebhookRequest

The request body.

Return Type

Webhook

Example Usage Code Snippet

import { CreateWebhookRequest, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const webhookEvent = WebhookEvent.ENVELOPEEXPIRED;

  const input: CreateWebhookRequest = {
    event: webhookEvent,
    target: 'target',
  };

  const { data } = await signplus.signplus.createWebhook(input);

  console.log(data);
})();

list_webhooks

List webhooks

  • HTTP Method: POST
  • Endpoint: /webhooks

Parameters

NameTypeRequiredDescription
bodyListWebhooksRequest

The request body.

Return Type

ListWebhooksResponse

Example Usage Code Snippet

import { ListWebhooksRequest, Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const webhookEvent = WebhookEvent.ENVELOPEEXPIRED;

  const input: ListWebhooksRequest = {
    webhookId: 'webhook_id',
    event: webhookEvent,
  };

  const { data } = await signplus.signplus.listWebhooks(input);

  console.log(data);
})();

delete_webhook

Delete webhook

  • HTTP Method: DELETE
  • Endpoint: /webhook/{webhook_id}

Parameters

NameTypeRequiredDescription
webhookIdstring

Example Usage Code Snippet

import { Signplus } from '@alohi/signplus-typescript';

(async () => {
  const signplus = new Signplus({
    token: 'YOUR_TOKEN',
  });

  const { data } = await signplus.signplus.deleteWebhook('webhook_id');

  console.log(data);
})();

Models

Document

Properties

NameTypeRequiredDescription
idstring

Unique identifier of the document
namestring

Name of the document
filenamestring

Filename of the document
pageCountnumber

Number of pages in the document
pagesPage[]

List of pages in the document

Models

CreateEnvelopeRequest

Properties

NameTypeRequiredDescription
namestring

Name of the envelope
flowTypeEnvelopeFlowType

Flow type of the envelope (REQUEST_SIGNATURE is a request for signature, SIGN_MYSELF is a self-signing flow)
legalityLevelEnvelopeLegalityLevel

Legal level of the envelope (SES is Simple Electronic Signature, QES_EIDAS is Qualified Electronic Signature, QES_ZERTES is Qualified Electronic Signature with Zertes)
expiresAtnumber

Unix timestamp of the expiration date
commentstring

Comment for the envelope
sandboxboolean

Whether the envelope is created in sandbox mode

Models

ListEnvelopesRequest

Properties

NameTypeRequiredDescription
namestring

Name of the envelope
tagsstring[]

List of tags
commentstring

Comment of the envelope
idsstring[]

List of envelope IDs
statusesEnvelopeStatus[]

List of envelope statuses
folderIdsstring[]

List of folder IDs
onlyRootFolderboolean

Whether to only list envelopes in the root folder
dateFromnumber

Unix timestamp of the start date
dateTonumber

Unix timestamp of the end date
uidstring

Unique identifier of the user
firstnumber

lastnumber

afterstring

beforestring

orderFieldEnvelopeOrderField

Field to order envelopes by
ascendingboolean

Whether to order envelopes in ascending order
includeTrashboolean

Whether to include envelopes in the trash

Models

EnvelopeNotification

Properties

NameTypeRequiredDescription
subjectstring

Subject of the notification
messagestring

Message of the notification
reminderIntervalnumber

Interval in days to send reminder

Models

ListTemplatesRequest

Properties

NameTypeRequiredDescription
namestring

Name of the template
tagsstring[]

List of tag templates
idsstring[]

List of templates IDs
firstnumber

lastnumber

afterstring

beforestring

orderFieldTemplateOrderField

Field to order templates by
ascendingboolean

Whether to order templates in ascending order

Models

SetTemplateCommentRequest

Properties

NameTypeRequiredDescription
commentstring

Comment for the template

Models

Template

Properties

NameTypeRequiredDescription
idstring

Unique identifier of the template
namestring

Name of the template
commentstring

Comment for the template
pagesnumber

Total number of pages in the template
legalityLevelEnvelopeLegalityLevel

Legal level of the envelope (SES is Simple Electronic Signature, QES_EIDAS is Qualified Electronic Signature, QES_ZERTES is Qualified Electronic Signature with Zertes)
createdAtnumber

Unix timestamp of the creation date
updatedAtnumber

Unix timestamp of the last modification date
expirationDelaynumber

Expiration delay added to the current time when an envelope is created from this template
numRecipientsnumber

Number of recipients in the envelope
signingStepsTemplateSigningStep[]

documentsDocument[]

notificationEnvelopeNotification

dynamicFieldsstring[]

List of dynamic fields

Models

RecipientVerificationType

Type of signature verification (SMS sends a code via SMS, PASSCODE requires a code to be entered)

Properties

NameTypeRequiredDescription
SMSstring

“SMS”
PASSCODEstring

“PASSCODE”

Models

AddEnvelopeSigningStepsRequest

Properties

NameTypeRequiredDescription
signingStepsSigningStep[]

List of signing steps

Models

AnnotationFontFamily

Font family of the text

Properties

NameTypeRequiredDescription
UNKNOWNstring

“UNKNOWN”
SERIFstring

“SERIF”
SANSstring

“SANS”
MONOstring

“MONO”

Models

AddTemplateSigningStepsRequest

Properties

NameTypeRequiredDescription
signingStepsTemplateSigningStep[]

List of signing steps

Models

SetEnvelopeCommentRequest

Properties

NameTypeRequiredDescription
commentstring

Comment for the envelope

Models

TemplateOrderField

Field to order templates by

Properties

NameTypeRequiredDescription
TEMPLATEIDstring

“TEMPLATE_ID”
TEMPLATECREATIONDATEstring

“TEMPLATE_CREATION_DATE”
TEMPLATEMODIFICATIONDATEstring

“TEMPLATE_MODIFICATION_DATE”
TEMPLATENAMEstring

“TEMPLATE_NAME”

Models

EnvelopeOrderField

Field to order envelopes by

Properties

NameTypeRequiredDescription
CREATIONDATEstring

“CREATION_DATE”
MODIFICATIONDATEstring

“MODIFICATION_DATE”
NAMEstring

“NAME”
STATUSstring

“STATUS”
LASTDOCUMENTCHANGEstring

“LAST_DOCUMENT_CHANGE”

Models

AddEnvelopeDocumentRequest

Properties

NameTypeRequiredDescription
fileArrayBuffer

File to upload in binary format

Models

ListWebhooksRequest

Properties

NameTypeRequiredDescription
webhookIdstring

ID of the webhook
eventWebhookEvent

Event of the webhook

Models

SetEnvelopeLegalityLevelRequest

Properties

NameTypeRequiredDescription
legalityLevelEnvelopeLegalityLevel

Legal level of the envelope (SES is Simple Electronic Signature, QES_EIDAS is Qualified Electronic Signature, QES_ZERTES is Qualified Electronic Signature with Zertes)

Models

SetEnvelopeExpirationRequest

Properties

NameTypeRequiredDescription
expiresAtnumber

Unix timestamp of the expiration date

Models

AnnotationText

Text annotation (null if annotation is not a text)

Properties

NameTypeRequiredDescription
sizenumber

Font size of the text in pt
colornumber

Text color in 32bit representation
valuestring

Text content of the annotation
tooltipstring

Tooltip of the annotation
dynamicFieldNamestring

Name of the dynamic field
fontAnnotationFont

Models

AnnotationCheckbox

Checkbox annotation (null if annotation is not a checkbox)

Properties

NameTypeRequiredDescription
checkedboolean

Whether the checkbox is checked
styleAnnotationCheckboxStyle

Style of the checkbox

Models

Envelope

Properties

NameTypeRequiredDescription
idstring

Unique identifier of the envelope
namestring

Name of the envelope
commentstring

Comment for the envelope
pagesnumber

Total number of pages in the envelope
flowTypeEnvelopeFlowType

Flow type of the envelope (REQUEST_SIGNATURE is a request for signature, SIGN_MYSELF is a self-signing flow)
legalityLevelEnvelopeLegalityLevel

Legal level of the envelope (SES is Simple Electronic Signature, QES_EIDAS is Qualified Electronic Signature, QES_ZERTES is Qualified Electronic Signature with Zertes)
statusEnvelopeStatus

Status of the envelope
createdAtnumber

Unix timestamp of the creation date
updatedAtnumber

Unix timestamp of the last modification date
expiresAtnumber

Unix timestamp of the expiration date
numRecipientsnumber

Number of recipients in the envelope
isDuplicableboolean

Whether the envelope can be duplicated
signingStepsSigningStep[]

documentsDocument[]

notificationEnvelopeNotification

Models

AddTemplateDocumentRequest

Properties

NameTypeRequiredDescription
fileArrayBuffer

File to upload in binary format

Models

TemplateRecipient

Properties

NameTypeRequiredDescription
idstring

Unique identifier of the recipient
uidstring

Unique identifier of the user associated with the recipient
namestring

Name of the recipient
emailstring

Email of the recipient
roleTemplateRecipientRole

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)

Models

AddAnnotationRequest

Properties

NameTypeRequiredDescription
documentIdstring

ID of the document
pagenumber

Page number where the annotation is placed
xnumber

X coordinate of the annotation (in % of the page width from 0 to 100) from the top left corner
ynumber

Y coordinate of the annotation (in % of the page height from 0 to 100) from the top left corner
widthnumber

Width of the annotation (in % of the page width from 0 to 100)
heightnumber

Height of the annotation (in % of the page height from 0 to 100)
typeAnnotationType

Type of the annotation
recipientIdstring

ID of the recipient
requiredboolean

signatureAnnotationSignature

Signature annotation (null if annotation is not a signature)
initialsAnnotationInitials

Initials annotation (null if annotation is not initials)
textAnnotationText

Text annotation (null if annotation is not a text)
datetimeAnnotationDateTime

Date annotation (null if annotation is not a date)
checkboxAnnotationCheckbox

Checkbox annotation (null if annotation is not a checkbox)

Models

ListEnvelopeDocumentAnnotationsResponse

Properties

NameTypeRequiredDescription
annotationsAnnotation[]

Models

EnvelopeStatus

Status of the envelope

Properties

NameTypeRequiredDescription
DRAFTstring

“DRAFT”
INPROGRESSstring

“IN_PROGRESS”
COMPLETEDstring

“COMPLETED”
EXPIREDstring

“EXPIRED”
DECLINEDstring

“DECLINED”
VOIDEDstring

“VOIDED”
PENDINGstring

“PENDING”

Models

RecipientVerification

Properties

NameTypeRequiredDescription
typeRecipientVerificationType

Type of signature verification (SMS sends a code via SMS, PASSCODE requires a code to be entered)
valuestring

Models

AnnotationCheckboxStyle

Style of the checkbox

Properties

NameTypeRequiredDescription
CIRCLECHECKstring

“CIRCLE_CHECK”
CIRCLEFULLstring

“CIRCLE_FULL”
SQUARECHECKstring

“SQUARE_CHECK”
SQUAREFULLstring

“SQUARE_FULL”
CHECKMARKstring

“CHECK_MARK”
TIMESSQUAREstring

“TIMES_SQUARE”

Models

SigningStep

Properties

NameTypeRequiredDescription
recipientsRecipient[]

List of recipients

Models

AnnotationDateTime

Date annotation (null if annotation is not a date)

Properties

NameTypeRequiredDescription
sizenumber

Font size of the text in pt
fontAnnotationFont

colorstring

Color of the text in hex format
autoFillboolean

Whether the date should be automatically filled
timezonestring

Timezone of the date
timestampnumber

Unix timestamp of the date
formatAnnotationDateTimeFormat

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)

Models

CreateTemplateRequest

Properties

NameTypeRequiredDescription
namestring

Models

ListTemplateDocumentsResponse

Properties

NameTypeRequiredDescription
documentsDocument[]

Models

AnnotationInitials

Initials annotation (null if annotation is not initials)

Properties

NameTypeRequiredDescription
idstring

Unique identifier of the annotation initials

Models

AnnotationFont

Properties

NameTypeRequiredDescription
familyAnnotationFontFamily

Font family of the text
italicboolean

Whether the text is italic
boldboolean

Whether the text is bold

Models

AnnotationType

Type of the annotation

Properties

NameTypeRequiredDescription
TEXTstring

“TEXT”
SIGNATUREstring

“SIGNATURE”
INITIALSstring

“INITIALS”
CHECKBOXstring

“CHECKBOX”
DATEstring

“DATE”

Models

Webhook

Properties

NameTypeRequiredDescription
idstring

Unique identifier of the webhook
eventWebhookEvent

Event of the webhook
targetstring

Target URL of the webhook

Models

RenameTemplateRequest

Properties

NameTypeRequiredDescription
namestring

Name of the template

Models

ListTemplatesResponse

Properties

NameTypeRequiredDescription
hasNextPageboolean

Whether there is a next page
hasPreviousPageboolean

Whether there is a previous page
templatesTemplate[]

Models

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

NameTypeRequiredDescription
SIGNERstring

“SIGNER”
RECEIVESCOPYstring

“RECEIVES_COPY”
INPERSONSIGNERstring

“IN_PERSON_SIGNER”

Models

Annotation

Properties

NameTypeRequiredDescription
idstring

Unique identifier of the annotation
recipientIdstring

ID of the recipient
documentIdstring

ID of the document
pagenumber

Page number where the annotation is placed
xnumber

X coordinate of the annotation (in % of the page width from 0 to 100) from the top left corner
ynumber

Y coordinate of the annotation (in % of the page height from 0 to 100) from the top left corner
widthnumber

Width of the annotation (in % of the page width from 0 to 100)
heightnumber

Height of the annotation (in % of the page height from 0 to 100)
requiredboolean

Whether the annotation is required
typeAnnotationType

Type of the annotation
signatureAnnotationSignature

Signature annotation (null if annotation is not a signature)
initialsAnnotationInitials

Initials annotation (null if annotation is not initials)
textAnnotationText

Text annotation (null if annotation is not a text)
datetimeAnnotationDateTime

Date annotation (null if annotation is not a date)
checkboxAnnotationCheckbox

Checkbox annotation (null if annotation is not a checkbox)

Models

DynamicField

Properties

NameTypeRequiredDescription
namestring

Name of the dynamic field
valuestring

Value of the dynamic field

Models

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

NameTypeRequiredDescription
DMYNUMERICSLASHstring

“DMY_NUMERIC_SLASH”
MDYNUMERICSLASHstring

“MDY_NUMERIC_SLASH”
YMDNUMERICSLASHstring

“YMD_NUMERIC_SLASH”
DMYNUMERICDASHSHORTstring

“DMY_NUMERIC_DASH_SHORT”
DMYNUMERICDASHstring

“DMY_NUMERIC_DASH”
YMDNUMERICDASHstring

“YMD_NUMERIC_DASH”
MDYTEXTDASHSHORTstring

“MDY_TEXT_DASH_SHORT”
MDYTEXTSPACESHORTstring

“MDY_TEXT_SPACE_SHORT”
MDYTEXTSPACEstring

“MDY_TEXT_SPACE”

Models

EnvelopeFlowType

Flow type of the envelope (REQUEST_SIGNATURE is a request for signature, SIGN_MYSELF is a self-signing flow)

Properties

NameTypeRequiredDescription
REQUESTSIGNATUREstring

“REQUEST_SIGNATURE”
SIGNMYSELFstring

“SIGN_MYSELF”

Models

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

NameTypeRequiredDescription
SESstring

“SES”
QESEIDASstring

“QES_EIDAS”
QESZERTESstring

“QES_ZERTES”

Models

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

NameTypeRequiredDescription
SIGNERstring

“SIGNER”
RECEIVESCOPYstring

“RECEIVES_COPY”
INPERSONSIGNERstring

“IN_PERSON_SIGNER”

Models

SetEnvelopeDynamicFieldsRequest

Properties

NameTypeRequiredDescription
dynamicFieldsDynamicField[]

List of dynamic fields

Models

Page

Properties

NameTypeRequiredDescription
widthnumber

Width of the page in pixels
heightnumber

Height of the page in pixels

Models

TemplateSigningStep

Properties

NameTypeRequiredDescription
recipientsTemplateRecipient[]

List of recipients

Models

ListEnvelopesResponse

Properties

NameTypeRequiredDescription
hasNextPageboolean

Whether there is a next page
hasPreviousPageboolean

Whether there is a previous page
envelopesEnvelope[]

Models

Recipient

Properties

NameTypeRequiredDescription
namestring

Name of the recipient
emailstring

Email of the recipient
roleRecipientRole

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)
idstring

Unique identifier of the recipient
uidstring

Unique identifier of the user associated with the recipient
verificationRecipientVerification

Models

WebhookEvent

Event of the webhook

Properties

NameTypeRequiredDescription
ENVELOPEEXPIREDstring

“ENVELOPE_EXPIRED”
ENVELOPEDECLINEDstring

“ENVELOPE_DECLINED”
ENVELOPEVOIDEDstring

“ENVELOPE_VOIDED”
ENVELOPECOMPLETEDstring

“ENVELOPE_COMPLETED”

Models

CreateWebhookRequest

Properties

NameTypeRequiredDescription
eventWebhookEvent

Event of the webhook
targetstring

URL of the webhook target

Models

CreateEnvelopeFromTemplateRequest

Properties

NameTypeRequiredDescription
namestring

Name of the envelope
commentstring

Comment for the envelope
sandboxboolean

Whether the envelope is created in sandbox mode

Models

ListTemplateAnnotationsResponse

Properties

NameTypeRequiredDescription
annotationsAnnotation[]

Models

RenameEnvelopeRequest

Properties

NameTypeRequiredDescription
namestring

Name of the envelope

Models

ListTemplateDocumentAnnotationsResponse

Properties

NameTypeRequiredDescription
annotationsAnnotation[]

Models

ListEnvelopeDocumentsResponse

Properties

NameTypeRequiredDescription
documentsDocument[]

Models

ListWebhooksResponse

Properties

NameTypeRequiredDescription
webhooksWebhook[]

Models

AnnotationSignature

Signature annotation (null if annotation is not a signature)

Properties

NameTypeRequiredDescription
idstring

Unique identifier of the annotation signature