RocketKOR

COMING SOON

List Card Statements

Retrieve a list of monthly statements for an issued card. All existing statements for the card will be retrieved.

To retrieve a list of statements, you will need:

  • ID of the integrated Financial Account linked to the issued card

Endpoint

GET /v1/integrated-cards/{financialAccountId}/statements

Authorization Header

Authorization: Bearer <access_token>

Path Parameters

financialAccountId  REQUIRED

string (UUID)

ID of the integrated Financial Account. The issued card is linked to this Financial Account.

Request Body

None

Returns

Returns an array of Card Statement objects.

SAMPLE RESPONSE

				
					{
  "customerId": "244110b1-dfea-4667-83e3-51dc19115fa4",
  "balance": "3000.00",
  "generatedStatements": [
    {
      "month": "01",
      "year": "2023"
    },
    {
      "month": "02",
      "year": "2023"
    }
  ]
}