Fetch Transactions

[GET]
{{baseUrl}}/api/v1/card/virtual/transactions
HeaderTypeDescription
AppIdstringyou would need to create an app to get your app ID
Authorizationstringpublic secret key e.g prod_sk_1T1eSavlZxy02OT3OWlvbxK4G

Query parameter

ParameterTypeDescription
card_id optionalstringCard Id
transaction_type optionalstringTransaction type

Sample response

Response
{
    "entity": {
        "transactions": [
           {
            "amountLimit": 40,
            "cardId": "5a049649-9dce-49d7-90d2-08dd08e9829e",
            "cardBrand": null,
            "cardClass": null,
            "limitWindow": "LIFETIME",
            "expirationDate": "2027-11-20T00:00:00",
            "expiration": "1127",
            "terminateDate": null,
            "currencyCode": "USD",
            "firstSix": "556371",
            "lastFour": "4910",
            "status": "Card - Active",
            "midWhitelist": [],
            "midBlacklist": [
                "244815000156182",
                "720000866043001",
                "8029612713",
                "653990701861820"
            ],
            "gatewayMerchantGuid": "9ec18b1a-fc6a-4e72-a62a-a91bcfcdcdef",
            "availableBalance": 40,
            "isPhysical": false
        },
         {
            "amountLimit": 40,
            "cardId": "5a049649-9dce-49d7-90d2-08dd08e9829e",
            "cardBrand": null,
            "cardClass": null,
            "limitWindow": "LIFETIME",
            "expirationDate": "2027-11-20T00:00:00",
            "expiration": "1127",
            "terminateDate": null,
            "currencyCode": "USD",
            "firstSix": "556371",
            "lastFour": "4910",
            "status": "Card - Active",
            "midWhitelist": [],
            "midBlacklist": [
                "244815000156182",
                "720000866043001",
                "8029612713",
                "653990701861820"
            ],
            "gatewayMerchantGuid": "9ec18b1a-fc6a-4e72-a62a-a91bcfcdcdef",
            "availableBalance": 40,
            "isPhysical": false
        }
        ],
        "currentPage": 1,
        "pageSize": 10,
        "totalCount": 0,
        "totalPages": 0
    }
}