Get reloadabale card transactions

URL

GET /api/v1/reloadable/cards/{id}/transactions?pageSize=10?pageNum=0

Response:

{
  "hasMore": true,
  "totalCount": 25,
  "items": [
    {
      "reloadableCardId": 123,
      "transactionDate": "2024-01-15T10:30:00Z",
      "cardholderName": "John Doe",
      "accountNumber": "XXXXXXXXXXXX1234",
      "status": "posted",
      "reasonCode": "00",
      "responseCode": "00",
      "requestCode": "PUR",
      "transactionAmount": 25.5,
      "currency": "USD",
      "description": "Purchase at Amazon.com",
      "mcc": "5411",
      "merchantName": "Amazon.com",
      "merchantCountry": "USA",
      "settlementDate": "2024-01-16T00:00:00Z",
      "merchantReferenceId": "MER123456789"
    }
  ]
}