Supplier Signature
When a supplier 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 the resources directly related to this event.
Path: /seller-signature
Webhook Payload Object
Key | Type | Description |
---|---|---|
sponsorId | integer | Anchor ID. |
buyerId | integer | Investor ID. |
sellerId | integer | Supplier ID. |
purchaseId | string | Purchase ID. |
status | string | Signature status. Possible values: APPROVED - Purchase approvedUNAPPROVED - Purchase rejectedWAITING - Waiting for signature (for multiple signatures) |
signatures | array | Contains signature objects for each legal representative (for multiple signatures). |
signatures[][name] | string | Legal representative's name. |
signatures[][email] | string | Legal representative's email. |
signatures[][governmentId] | string | Legal representative's SSN. |
signatures[][status] | string | Signature status by this legal representative. Possible values: APPROVED - Purchase approvedUNAPPROVED - Purchase rejectedWAITING - Waiting for signature |
_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":111111,
"buyerId":78676,
"sellerId":1611954924,
"purchaseId":"GUXbVzi0Tn",
"status":"APPROVED",
"signatures":[
{
"name":"José Carlos",
"email":"[email protected]",
"governmentId":"05319135679",
"status":"APPROVED"
},
{
"name":"João Pedro",
"email":"[email protected]",
"governmentId":"99813646063",
"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"
}
}
}
Updated 7 months ago