Locking/unlocking steps is a way to control the communication between esignatur and the signer.
Please note that you cannot lock a step if:
When you unlock a step processing commences immediately.
The following models are used:
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 one or more steps. StepNumbers are zero-based.
POST api.esignatur.dk/Lock/Lock
{ "OrderId": "166f53c7-da4d-4e52-b438-a04dab0bbcb6", "StepNumbers": [ 0, 1, 2 ] }
Unlock one or more steps. StepNumbers are zero-based.
POST api.esignatur.dk/Lock/Unlock
{ "OrderId": "166f53c7-da4d-4e52-b438-a04dab0bbcb6", "StepNumbers": [ 0, 1 ] }