RocketKOR

COMING SOON

Card Statement Object

The Card Statement object represents account statements that have been generated for an issued card.

Attributes

customerId

string (UUID)

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

balance

string (number)

Balance of the card account.

generatedStatements

object

List of generated statements for the card.

month  

string (number)

Month of the statement. For example, January is 01.

year  

string (number)

Year of the statement. For example, 2023.

Card Statement Object

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