GET
/
api
/
provider
/
wallets
/
{accountNumber}
/
statement
curl --request GET \
  --url https://sandbox.readycashng.com:8447/api/provider/wallets/{accountNumber}/statement \
  --header 'Authorization: Bearer <token>'
[
    {
        "debit": false,
        "sender": null,
        "recipient": null,
        "terminal": null,
        "tranId": 93292,
        "tranType": "200.22.0000",
        "description": null,
        "shortDescription": null,
        "longDescription": null,
        "date": 1640016577000,
        "amount": 100.00,
        "reciept": null,
        "balance": 955397.00,
        "balance2": null,
        "logoId": null,
        "externalRef": null,
        "sessionId": null,
        "timestamp": null,
        "captureDate": null,
        "narration": null
},
{
        "debit": false,
        "sender": null,
        "recipient": null,
        "terminal": null,
        "tranId": 93291,
        "tranType": "200.22.0000",
        "description": null,
        "shortDescription": null,
        "longDescription": null,
        "date": 1640016417000,
        "amount": 5000.00,
        "reciept": null,
        "balance": 955497.00,
        "balance2": null,
        "logoId": null,
        "externalRef": null,
        "sessionId": null,
        "timestamp": null,
        "captureDate": null,
        "narration": null
    }
]

To improve query efficiency please ensure you paginate queries and if possible scope your queries by date using the query parameters

Path parameters

accountNumber
number
required

Wallet Account Number

Query Parameters

start_date
number

UTC date/time stamp in milliseconds for the start date of the query

end_date
number

UTC date/time stamp in milliseconds for the end date of the query

pageSize
number
default: "20"

The page size of the records to return, default is 20, max is 100

page
number
default: "1"

The current page of the records to return, default is 1, max is total records/pageSize this is a ‘1’ index parameter

wrap
boolean
default: "true"

This parameter must be set to true to ensure response is wrapped in pagination format, if not set the response is returned flat, fit only for infinite loading