Documentation Index
Fetch the complete documentation index at: https://docs.abacatepay.com/llms.txt
Use this file to discover all available pages before exploring further.
Usados para notificar o status de transferências (envio de valores para contas externas).
transfer.completed
transfer.failed
Disparado quando uma transferência é concluída com sucesso.{
"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..."
}
}
}
Disparado quando uma transferência falha.{
"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..."
}
}
}