get https://api.lenco.co/access/v2/transactions
Get transactions that occurred on your accounts
Response Schema:
{
"status": boolean,
"message": string,
"data": [
{
"id": string,
"amount": string,
"currency": string,
"narration": string,
"type": "credit" | "debit",
"datetime": date-time,
"accountId": string,
"balance": string | null
}
],
"meta": {
"total": number,
"pageCount": number,
"perPage": number,
"currentPage": number
}
}