Bank Transfer
Call the Payments API to request payments via Bank Transfer.
POST /v2/payin
curl -v --location --request POST 'https://sandbox.smartfastpay.com/v2/payin' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <Access-Token>' \
--data-raw '{
"customer": {
"id": "b48a0728-9ff4-47ee-8f1b-92d2d5813dda",
"name": "John Doe",
"email": "[email protected]",
"document": {
"type": "CPF",
"number": "12345678909"
},
"phone": "+5511912345678",
"address": {
"address_1": "Rua da avenida",
"address_2": "Quadra 01",
"number": "100",
"neighborhood": "Londrina",
"city": "Florianópolis",
"state": "SC",
"postal_code": "12332-343",
"country_code": "BRA"
}
},
"country": "BRA",
"payment_method": "bank_transfer",
"notification_url": "https://webhook.site/5463456345",
"transaction": {
"id": "b7178a51-3c86-4c08-80ac-49f2b93c58bc",
"currency": "BRL",
"amount": 2
}
}'Parameter
Type
Required
Description
Last updated