Cancel

Use this method to cancel an order.

The following models are used in the call:

CancelOrderModel
Name Type Description Optional
OrderId Guid The order ID of the order to cancel.
Reason String The reason for cancellation - this will be sent to the signers. yes
Silent Boolean Set to true to have a silent cancel, eg. no emails are sent. yes


RevokeCancellationModel
Name Type Description Optional
OrderId String Order Id.
ActivationOnly Boolean Only activate order? If set to true, signers will not be re-invited.



CancelOrder

Description

Cancel an order.

Synopsis

POST api.esignatur.dk/Cancel/CancelOrder

JSON Input

{
  "OrderId": "d964db6e-c3a2-41c9-b2d4-d6b50e64bb4c",
  "Reason": "Offer has expired",
  "Silent": false
}

JSON Output

"Order d964db6e-c3a2-41c9-b2d4-d6b50e64bb4c pending cancellation"


RevokeCancellation

Description

Revoke cancellation of a previously cancelled order.

Synopsis

POST api.esignatur.dk/Cancel/RevokeCancellation

JSON Input

{
  "OrderId": "12dde080-87ae-4534-9ee4-22a11502db43",
  "ActivationOnly": false
}