Skip to content

Bank Transfer Statement

Bank Transfer Statement

List all in progress and/or completed bank transfer transactions which are associated with the reported wallet.

HTTP Request

GET /wallets/{{walletId}}/banktransfers

Request Headers
{
    "Authorization": "Bearer {{access_token}}"
}
Content-Type: application/json
{
    "statusCode":200,
    "errorMsg": "",
    "statement": [
        {
            "creditDate": "2020-09-30",
            "description": "TRANSF C/C BANCARIA",
            "amount": 20.00,
            "transactionId": "7f8c6018-2258-11eb-adc1-0242ac120002",
            "comment": "",
            "entryTime": "2020-10-01T00:01:16",
            "type": "D"
        },
        {
            "creditDate": "2020-10-29",
            "description": "TRANSF C/C BANCARIA",
            "amount": 10.00,
            "transactionId": "9d88d4de-2258-11eb-adc1-0242ac120002",
            "comment": "",
            "entryTime": "2020-10-29T05:52:56",
            "type": "C"
        }
    ]
}

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
startDate String Initial date for statement query, YYYY-MM-DD
endDate String Final date for statement query, YYYY-MM-DD

Response Body Details

Parameter Type Description
statusCode int 200 Success, 401 Access denied, 422 Required fields missing or invalid data, 500 internal error
errorMsg String error message if failed
statement JSON JSON Array for statement, please see below for detail
JSON Field Type Description
creditDate String Credit Date
description String Operation description
amount Float Operation amount
transactionId String Transaction code
comment String Operation comment
entryTime String Operation entry time
type String Statement type, C = Credit, D = Debit, S = Balance
Back to top