EaserixDocs
DevelopersAPI referenceSignNotary

Record an act

One notarial act, appended to the profile's tamper-evident hash chain (each entry's hash covers the previous hash). idMethod records the ID type and issuer — never ID numbers. Fees are integer cents; the notarial vs non-notarial split is the SE-tax separation.

View as Markdown
POST
/v1/notary/journal
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/notary/journal" \  -H "Content-Type: application/json" \  -d '{    "actType": "string"  }'
{  "entry": {    "id": "string",    "seq": 0,    "actType": "string",    "documentDesc": "string",    "signerName": "string",    "idMethod": "string",    "method": "string",    "location": "string",    "feeCents": 0,    "nonNotarialFeeCents": 0,    "requestId": "string",    "notes": "string",    "performedAt": "2019-08-24T14:15:22Z",    "prevHash": "string",    "hash": "string",    "created": "2019-08-24T14:15:22Z"  }}