Assinatura do Cedente

Quando um cedente assina a operação, enviamos este evento com as informações a respeito de quem são os participantes da operação e o status da assinatura.

Você pode utilizar os _links para navegar nos recursos ligados diretamente à este evento.

Path: /seller-signature

Webhook payload object

ChaveTipoDescrição

contractId


string

Identificador do contrato.

buyerName


string

Razão Social do investidor.

buyerGovernmentId


string

CNPJ do investidor.

sellerName


string

Razão Social ou Nome do cedente.

sellerGovernmentId


integer

CNPJ ou CPF do cedente.

amount


number

Valor do contrato.

_links


object

Recursos disponíveis através de HATEOAS.
Para saber mais clique aqui.

Recursos disponíveis são:
seller - Dados do Cedente.
contract - Dados do Contrato.
buyer - Dados do Investidor.

Webhook payload example

{
  "contractId" : "45bfe258-9bd1-11ec-b909-0242ac120002",
  "buyerName" : "Investidor",
  "buyerGovernmentId" : "25297658000138",
  "sellerName" : "Cedente",
  "sellerGovernmentId" : "78795395000153",
  "amount" : "10000.10",
  "eventType" : "SellerSignedEvent",
  "_links" : {
    "seller" : {
      "href" : "https://gateway.spike.cash/v1/buyers/25297658000138/sellers/78795395000153",
      "type" : "GET"
    },
    "contract" : {
      "href" : "https://gateway.spike.cash/v1/buyers/25297658000138/contracts/45bfe258-9bd1-11ec-b909-0242ac120002",
      "type" : "GET"
    },
    "buyer" : {
      "href" : "https://gateway.spike.cash/v1/buyers/25297658000138",
      "type" : "GET"
    }
  }
}