QRCODE Bank List
Get QRCODE Payout Bank List
POST
https://sandbox.transfersmile.com/api/payout/bank-account-list
This endpoint allows you to get the list of QRCODE.
Headers
Name
Type
Description
Content-Type*
string
application/json; charset=UTF-8
AppId*
string
Get AppId from dashboard
Authorization*
string
signature, generated by SHA256($sorted_params + $app_key)
Request Body
Name
Type
Description
country
string
Country Code.
- Fixed value: BRA -
method
string
Method - Fixed value: QRCODE -
account_type
string
Account type - Fixed value: qrcode
account
string
User's PIX QRCode
timestamp
Integer
unix timestamp, e.g. 1628512575
{
"code": 200,
"msg": "success",
"time": 1628497163,
"data": [{
"name": "",
"document_id": "",
"document_type": "", //CPF or CNPJ
"bank_code": "", //Bank ISPB Code, 8 digits
"bank_name": "",
"account": "",
"account_type": "",
"amount": ""
}]
}
Example
curl --location --request POST 'https://sandbox.transfersmile.com/api/payout/bank-account-list' \
--header 'AppId: 94FAC**********************68548' \
--header 'Authorization: d6181db0d6548b94b162e75d095b59147172d914699f83b2bd17951a671b6302' \
--header 'Content-Type: application/json' \
--data-raw '{
"country": "BRA",
"method": "QRCODE",
"account": "00020101021226880014br.gov.bcb.pixqrcode.com.br/pix/2e731667****",
"account_type": "qrcode",
"timeStamp": "1733992186"
}'
Last updated
Was this helpful?