Get the transactions of your wallets
GET/v1/partners/wallet/transactions
This endpoint allows you to retrieve the transactions that has occured on your wallets
Request
Query Parameters
Possible values: [credit
, debit
]
The type of transaction. Can be either credit or debit
Restrict the results to a specific currency
Filter transactions by a date range.
The search query to filter the transactions by. You can search by transaction reference or transaction narration.
Default value: 16
The number of results to return per page. Default is 16.
Default value: 1
The page number to retrieve. Default is 1
Responses
- 200
- 400
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object[]
The unique ID of the transaction
The unique reference of the transaction
The description of the transaction
The amount of the transaction
The currency of the transaction
The type of the transaction. One of: DEBIT, CREDIT
The balance of the account before the transaction
The balance of the account after the transaction
The date and time the transaction was created
{
"data": [
{
"id": 8,
"ref": "PH-34243TF",
"narration": "Lorem ipsum...",
"amount": 1470,
"currency": "GHS",
"type": "CREDIT",
"opening_bal": 3500,
"closing_bal": 4970,
"created_at": "2022-03-12T14:19:50.000000Z"
}
]
}
Bad request.
- application/json
- Schema
- Example (from schema)
Schema
{
"message": "400 Bad Request (Client Error)"
}