Bank Transfer
Call the Payouts API to request withdrawal for your customer.
POST /v2/payout
curl -v --location --request POST 'https://sandbox.smartfastpay.com/v2/payout' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <Access-Token>' \
--data-raw '{
"customer": {
"id": "b48a0728-9ff4-47ee-8f1b-92d2d5813dda",
"name": "Richard Roe",
"email": "[email protected]",
"document": {
"type": "CPF",
"number": "12345678909"
}
},
"country": "BRA",
"payment_method": "bank_transfer",
"notification_url": "http://mysite.com/api/notification",
"bank_transfer": {
"bank_agency": "0000",
"bank_code": "0000",
"bank_account_number": "0000000-5",
"bank_account_type": "SAVINGS",
"bank_name": "Nu Pagamentos S.A"
},
"transaction": {
"id": "9eb8f27c-3430-4529-83ec-21bbe438f8ae",
"currency": "BRL",
"amount": 200
}
}'Parameter
Type
Required
Description
Last updated