Skip to main content

eNotaryLog API - Templating (2.0.0)

Download OpenAPI specification:Download

The eNotaryLog API

Templating

Get template information by template id

Retrieves template information given an template ID. This endpoint is used for retrieving the role ids, free text fields, and other information regarding a specific template so that this information can be used to create an esign session using a template.

path Parameters
id
required
string <uuid>

The ID of the template to retrieve

Responses

Response samples

Content type
application/json
Example

No free text fields

{
  • "id": "8d976a23-b865-4fcd-9165-ddc0aedaf614",
  • "templateName": "Mortgage Agreement",
  • "roles": [
    ],
  • "freeTextFields": [ ]
}

Create an esign using a predefined template

Creates an esign session from a predefined template

Request Body schema: application/json
Array of objects non-empty

array of template ids to use to create an esign session.

Array of objects

The "signers" that need to sign the esign document(s). Each need to be assigned a role id. Two participants may not have the same role id.

Responses

Request samples

Content type
application/json
Example
{
  • "templates": [
    ],
  • "participants": [
    ]
}

Response samples

Content type
application/json
{
  • "esignId": "3d976a23-b865-4fcd-9165-ddc0aedaf614",
  • "transactionId": "4a976a23-b865-4fcd-9165-ddc0aedaf614"
}