Skip to content

Retrieve Bank Transfer Detail

Retrieve Bank Transfer Detail

Retrieve the detail information of specific bank transfer transaction which are associated with the reported wallet.

HTTP Request

GET /wallets/{{walletId}}/banktransfer/{{transactionId}}

Request Headers
{
    "Authorization": "Bearer {{access_token}}"
}
Content-Type: application/json
{
    "statusCode": 200,
    "errorMsg": "",
    "idempotencyKey":"09461d96-2252-11eb-adc1-0242ac120002",
    "targetName": "{{TARGET_PERSON_FULL_NAME}}",
    "targetDocument": "{{TARGET_PERSON_CPF}}",
    "targetBankName": "{{TARGET_BANK_NAME}}",
    "targetBankCode": "{{TARGET_BANK_CODE}}",
    "targetBankBranchId": "{{TARGET_BANK_BRANCH_ID}}",
    "targetBankAccountId": "{{TARGET_BANK_ACCOUNT_ID}}",
    "amount": 100,
    "currency": "BRL",
    "transferStatus":"IN_PROGRESS",
    "transferErrorMsg": null
}

HTTP Headers Details

Key Value
Authorization "bearer"+ "" + {{access_token}}

PATH and Query Parameters

Parameter Required Type Description
walletId String The wallet ID which the fund comes from
transactionId String The transaction ID

Response Body Details

Parameter Type Description
statusCode Integer 200 Success, 401 Access denied, 422 Required fields missing or invalid data, 500 internal error
errorMsg String error message if failed
idempotencyKey String Unique key to ensure idempotent requests
targetName String Target bank account holder full name
targetDocument String Target account holder identity, such as CPF for Brazil
targetBankName String Target bank name
targetBankCode String Target bank code
targetBankBranchId String Target bank branch id
targetBankAccountId String Target bank account id
amount String The transfer amount
currency String The currency of the transferred fund
transferStatus String Transfer status, settled, in progress or failed
transferErrorMsg String Transfer error message if failed
Back to top