Anchor Signature

When the anchor signs or rejects a purchase, we send this event with details about the participants and the status indicating whether the signature was approved or rejected.

You can use the _links to navigate resources directly related to this event.

Path: /sponsor-signature

Webhook Payload Object

KeyTypeDescription

sponsorId


integer

Anchor ID.

buyerId


integer

Investor ID.

sellerId


integer

Supplier ID.

purchaseId


string

Purchase ID.

status


string

Anchor’s signature status.

Possible values:
APPROVED - Purchase approved
UNAPPROVED - Purchase rejected

_links


object

Available HATEOAS resources.
More information here.

Available resources:
documents - Download terms related to the purchase.
purchase - List a purchase.
signature - List the signature of a purchase.

Webhook payload example:

{
   "sponsorId":1611954924,
   "buyerId":78676,
   "sellerId":123456,
   "purchaseId":"GUXbVzi0Tn",
   "status":"APPROVED",
   "_links":{
      "documents":{
         "href":"https://zuul.monkey.exchange/v2/buyers/78676/signatures/GUXbVzi0Tn/documents{?type}",
         "type":"GET",
         "templated":true
      },	 
      "purchase":{
         "href":"https://zuul.monkey.exchange/v2/buyers/78676/purchases/GUXbVzi0Tn",
         "type":"GET"
      },
      "signature":{
         "href":"https://zuul.monkey.exchange/v2/buyers/78676/signatures/GUXbVzi0Tn",
         "type":"GET"
      }
   }
}