List all Statements

Retrieves list of all account statements by passing the account ID
Accounts
List all Statements
 last updated: 
November 30, 2023

Statements are generated at the end of each month. For example, if the account was created on Aug 10, 2022, the first statement would be available on Sep 1, 2022.

ENDPOINT

  1. GET /v1/account/:id/statement


RESPONSE

  1. {
  2.     "total": 2,
  3.     "data": [
  4.         {
  5.             "month": 11,
  6.             "year": 2021,
  7.             "createdAt": "2021-12-01T00:00:00Z"
  8.         },
  9.         {
  10.             "month": 10,
  11.             "year": 2021,
  12.             "createdAt": "2021-11-01T00:00:00Z"
  13.         }
  14.     ]
  15. }