cURL
curl --request POST \ --url https://api.flutterwave.com/v3/beneficiaries \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "account_number": "0690000034", "account_bank": "044", "beneficiary_name": "Flutterwave Developers" } '
{ "status": "success", "message": "Beneficiary created", "data": { "id": 3644, "account_number": "0690000034", "bank_code": "044", "full_name": "Ade Bond", "created_at": "2020-01-16T18:01:28.000Z", "bank_name": "ACCESS BANK NIGERIA" } }
Create a transfer beneficiary
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
OK
Show child attributes
{ "id": 3644, "account_number": "0690000034", "bank_code": "044", "full_name": "Ade Bond", "created_at": "2020-01-16T18:01:28.000Z", "bank_name": "ACCESS BANK NIGERIA"}
Was this page helpful?