For the complete documentation index, see llms.txt. This page is also available as Markdown.

Assigning Roles to Signers

Learn how to define the actions each signer will perform on a document.

Autentique supports several actions that signers can perform when completing a document. In addition to signing, they can act as a witness, acknowledge, approve, and more.

{
  "document": {
    "name": "Contract"
  },
  "signers": [{
    "email": "email@example.com",
    "action": "SIGN"
   },{
    "email": "email@example.com",
    "action": "APPROVE"
  },{
    "email": "email@example.com",
    "action": "RECOGNIZE"
  },{
    "email": "email@example.com",
    "action": "SIGN_AS_A_WITNESS"
  },{
    "email": "email@example.com",
    "action": "ACKNOWLEDGE_RECEIPT"
  },{
    "email": "email@example.com",
    "action": "ENDORSE_IN_BLACK"
  },{
    "email": "email@example.com",
    "action": "ENDORSE_IN_WHITE"
  }]
}

Last updated