Get Card Details for Program

The Get Card Details for Program endpoint enables you to search by cardholder details to retrieve card information associated with the details entered.

The GET endpoint can contain various options in which you can filter cardholder information. You can use the following options to search by:

  • title
  • firstName
  • lastName
  • dateOfBirth
  • email
  • mobile

In the below, a first name and last name have been added to the endpoint to search for cards belonging to cardholders with the name John Smith:

{{base-url}}/program-manager/search/cards?FirstName=john&LastName=smith

This will return a 200 response that will return the details of all cards for a cardholder with that name.

[
    {
        "publicToken": "308795420",
        "expirationDate": null,
        "productType": null,
        "schemeId": 644,
        "schemeName": "SCHEME TEST",
        "status": "54",
        "balanceCurrency": "EUR",
        "balanceAmount": 0,
        "product": "VISA"
    }
]

👍

API Explorer

See the Get Card Details for Program endpoint.