Lock

Locking/unlocking steps is a way to control the communication between esignatur and the signer.

Please note that you cannot lock a step if:

  1. At least one of the signers have been invited to sign, or
  2. At least one of the signers have signed.

When you unlock a step processing commences immediately.

The following models are used:

LockModel
Name Type Description Optional
OrderId String Order Id
StepNumbers List<Int32> Steps to lock/unlock. Note this is the step number. The step number is 0-based. The first step is called 0, the second is called 1 and so forth.



Lock step

Description

Lock one or more steps. StepNumbers are zero-based.

Synopsis

POST api.esignatur.dk/Lock/Lock

JSON Output

{
  "OrderId": "166f53c7-da4d-4e52-b438-a04dab0bbcb6",
  "StepNumbers": [
    0,
    1,
    2
  ]
}


Unlock step

Description

Unlock one or more steps. StepNumbers are zero-based.

Synopsis

POST api.esignatur.dk/Lock/Unlock

JSON Output

{
  "OrderId": "166f53c7-da4d-4e52-b438-a04dab0bbcb6",
  "StepNumbers": [
    0,
    1
  ]
}