Get Cardholder Details for Program

The Cardholder Details for Program endpoint enables you to search for specific cardholder details for customers in your program.

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/cardholders?FirstName=John&LastName=Smith

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

[
    {
        "title": "Mr.",
        "firstName": "John",
        "lastName": "Smith",
        "dateOfBirth": "02/19/1982 00:00:00",
        "email": "[email protected]",
        "mobile": "07755123456"
    }
]

👍

API Explorer

See the Get Cardholder Details for Program endpoint.