Void Document

Void a document - will notify senders that the document has been voided

Overview

Voids a document and notifies senders. There is a notify option that can be set to `false`. If false, the signers will not be emailed.
You can also set msg which will be included in the email sent to signers. It's not required, but could be helpful if you have a reason for voiding. eg Correcting contract

End Point
https://goodsign.io/api/document/:uuid/void
Method
POST
Authentication
Bearer your_api_token
Response
  {
    "success": true,
    "msg": "Document has been voided OR Document was already voided, no changes made",
    "status": "voided",
    "master_doc": {*Master Document Data*}
  }
Working Curl Request
Remove the (opt) from a parameter to use it
curl --url https://goodsign.io/api/document//void \
--header 'authorization: Bearer YOUR_API_TOKEN' \
-F '(opt)slient=true' \
-F '(opt)msg=message to sender each signer about voided document'