Cardholder Details

This API retrieves the details of the cardholder for the card supplied in the endpoint. Unlike the Retrieve Card endpoint, that returns all details for the associated card, the Cardholder Details endpoint only returns details for the cardholder associated with the card.

You can retrieve the cardholder details by making a GET request to the Get Cardholder Details endpoint. For example:

{{base-url}}/cardholder/{{publicToken}}

A successful response will return a HTTP 200 response code. Below is an example payload:

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

👍

API Explorer

See the Cardholder Details endpoint for more information.