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
Chave | Tipo | Descriçã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.approve - Assinar contrato.unapprove - Reprovar contrato. |
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"
},
"approve" : {
"href" : "https://gateway.spike.cash/v1/buyers/25297658000138/signatures/45bfe258-9bd1-11ec-b909-0242ac120002/approve",
"type" : "POST"
},
"contract" : {
"href" : "https://gateway.spike.cash/v1/buyers/25297658000138/contracts/45bfe258-9bd1-11ec-b909-0242ac120002",
"type" : "GET"
},
"unapprove" : {
"href" : "https://gateway.spike.cash/v1/buyers/25297658000138/signatures/45bfe258-9bd1-11ec-b909-0242ac120002/unapprove",
"type" : "POST"
},
"buyer" : {
"href" : "https://gateway.spike.cash/v1/buyers/25297658000138",
"type" : "GET"
}
}
}
Updated 2 months ago