- transfer.completed
- transfer.failed
Disparado quando uma transferência é concluída com sucesso.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Eventos disparados para transferências de valores para contas externas.
{
"event": "transfer.completed",
"apiVersion": 2,
"devMode": false,
"data": {
"transfer": {
"id": "tran_xxx",
"externalId": "payout-ext-123",
"amount": 1000,
"status": "COMPLETE",
"method": "PIX",
"platformFee": 80,
"receiptUrl": "https://...",
"createdAt": "...",
"updatedAt": "...",
"endToEndIdentifier": "E123..."
}
}
}
{
"event": "transfer.failed",
"apiVersion": 2,
"devMode": false,
"data": {
"transfer": {
"id": "tran_xxx",
"externalId": "payout-ext-123",
"amount": 1000,
"status": "FAILED",
"method": "PIX",
"platformFee": 80,
"receiptUrl": "https://...",
"createdAt": "...",
"updatedAt": "...",
"endToEndIdentifier": "E123..."
}
}
}
Was this page helpful?