Solicitação de Antecipação Automática Cadastrada
Quando um cedente configura e aceita os termos da antecipação automática enviamos este evento para que o investidor possa aceitar ou recusar a configuração.
Você pode utilizar os _links
para navegar nos recursos relacionados a este evento.
Path: /automated-order
Webhook payload object
Chave | Tipo | Descrição |
---|---|---|
buyerGovernmentId | string | CNPJ ou CPF do investidor. |
sellerGovernmentId | string | CNPJ ou CPF do cedente. |
sellerName | string | Razão Social do cedente. |
relationId | string | Identificador da Solicitação. |
eventType | string | Identificador do evento. |
acquirers | array[object] | Coleção contendo as crdenciadoras que foram configuradas. |
acquirers[][acquirerGovernmentId] | string | CNPJ da credenciadora ou subcredenciadora |
acquirers[][initialTax] | number | Taxa da solicitação |
_links | object | Recursos disponíveis através de HATEOAS. Para saber mais clique aqui. Recursos disponíveis são: approve - Aprovar solicitação. unapprove - Reprovar solicitação. self - Listar solicitação. |
Webhook payload example
{
"_links":{
"approve":{
"href":"https://gateway.dev.spike.cash/v1/buyers/23940324000105/automated-order-configurations/48975675000182/approve",
"type":"POST"
},
"unapprove":{
"href":"https://gateway.dev.spike.cash/v1/buyers/23940324000105/automated-order-configurations/48975675000182/unapprove",
"type":"POST"
},
"self":{
"href":"https://gateway.dev.spike.cash/v1/buyers/23940324000105/automated-order-configurations/48975675000182",
"type":"GET"
}
},
"sellerGovernmentId":"48975675000182",
"sellerName":"Estabelecimento Comercial",
"relationId":"4942aafd-b166-4f79-8c61-a1ce44dcf747",
"buyerGovernmentId":"23940324000105",
"acquirers":[
{
"acquirerGovernmentId":"76310346000158",
"initialTax":0.1
}
],
"eventType":"AutomatedOrderSellerCreatedEvent"
}
Updated over 1 year ago