Seller Signature

Webhook event sent when a seller's legal representative signs or rejects a purchase, including signer details and signature status.

When a seller's legal representative signs or rejects a purchase, we send this event with information about the signers and the status that identifies whether the signature was approved or rejected.

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

Path: /seller-signature

Webhook payload object

KeyTypeDescription

_links


object

Resources available through HATEOAS.
To learn more, click here.

Available resources are:
buyer - List funder data.
documents - Download the assignment term.

auctionId


string

Purchase identifier.

bidId


string

Bid identifier.

sponsorName


string

Client's company name or full name.

sponsorGovernmentId


string

Client's CNPJ or CPF.

sellerName


string

Seller's company name or full name.

sellerGovernmentId


string

Seller's CNPJ or CPF.

buyerName


string

funder's company name or full name.

buyerGovernmentId


string

funder's CNPJ or CPF.

amount


number

Purchase amount.

status


string

Seller signature status.

Possible values are:\
APPROVED - Purchase approved
UNAPPROVED - Purchase rejected
WAITING - Waiting for signature

sellerSignatures


array

This array contains signature objects by legal representative.

sellerSignatures[][name]


string

Legal representative name.

sellerSignatures[][email]


string

Legal representative email.

sellerSignatures[][governmentId]


string

Legal representative CPF.

sellerSignatures[][status]


string

Signature status by legal representative.

Possible values are:\
APPROVED - Purchase approved
UNAPPROVED - Purchase rejected
WAITING - Waiting for signature

Webhook payload example

{
  "_links": {
    "documents": {
      "href": "https://gateway.hmg.sales.finance/v1/buyers/17785205000122/signatures/SD4p6PkBEC/file",
      "type": "GET"
    },
    "buyer": {
      "href": "https://gateway.hmg.sales.finance/v1/buyers/17785205000122",
      "type": "GET"
    }
  },
  "auctionId": "SD4p6PkBEC",
  "bidId": "78db94de-c256-4219-828e-edd14a7ca349",
  "sponsorName": "FANTASY SPONSOR LTDA",
  "sponsorGovernmentId": "59313502000115",
  "sellerName": "FANTASY SELLER SA",
  "sellerGovernmentId": "96701902000124",
  "buyerName": "FANTASY BANK",
  "buyerGovernmentId": "17785205000122",
  "amount": 2123476.9,
  "status": "WAITING",
  "sellerSignatures": [
    {
      "name": "Felipe Adorno",
      "email": "[email protected]",
      "governmentId": "80177922044",
      "status": "WAITING"
    },
    {
      "name": "Diego Tonzi",
      "email": "[email protected]",
      "governmentId": "99675942096",
      "status": "APPROVED"
    }
  ]
}

Did this page help you?