PIX
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": "58f0c005-3b7d-4c75-81f3-93b9a6fee864",
"name": "Richard Roe",
"email": "[email protected]",
"document": {
"type": "CPF",
"number": "12345678909"
}
},
"country": "BRA",
"payment_method": "pix",
"notification_url": "http://mysite.com/api/notification",
"transfer": {
"value": "12345678909"
},
"transaction": {
"id": "4ff7f67f-8194-4a66-903f-0600716f27e8",
"currency": "BRL",
"amount": 100
}
}'Parameter
Type
Required
Description
Last updated