Flutterwave · Schema
Flutterwave Transfer
A Flutterwave v4 transfer (payout) sent to a bank account, mobile wallet, or wallet recipient.
PaymentsPayoutsMobile MoneyCardsAfricaFintechRemittanceVirtual AccountsChargebacksMulti-Currency
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| amount | number | |
| currency | string | |
| status | string | |
| reference | string | |
| sender_id | string | ID of a previously created Transfer Sender (required for cross-border). |
| recipient_id | string | |
| rate_id | string | FX rate used for the transfer (cross-currency). |
| narration | string | |
| fee | number | |
| meta | object | |
| created_datetime | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/flutterwave/main/json-schema/flutterwave-transfer-schema.json",
"title": "Flutterwave Transfer",
"description": "A Flutterwave v4 transfer (payout) sent to a bank account, mobile wallet, or wallet recipient.",
"type": "object",
"required": ["id", "amount", "currency", "status"],
"properties": {
"id": { "type": "string" },
"amount": { "type": "number" },
"currency": { "type": "string" },
"status": { "type": "string", "enum": ["pending", "processing", "succeeded", "failed"] },
"reference": { "type": "string" },
"sender_id": { "type": "string", "description": "ID of a previously created Transfer Sender (required for cross-border)." },
"recipient_id": { "type": "string" },
"rate_id": { "type": "string", "description": "FX rate used for the transfer (cross-currency)." },
"narration": { "type": "string" },
"fee": { "type": "number" },
"meta": { "type": "object" },
"created_datetime": { "type": "string", "format": "date-time" }
}
}