1. Home
  2. Docs
  3. Data Partners API Documentation
  4. Get Card Details

Get Card Details

This endpoint allows the subscriber to double check non-sensitive card details.

The endpoint accepts GET requests and is available at:

/card//

Here too, the card must have been enrolled by the subscriber, and the request they send must
contain a valid token.

For Example:

In cUrl:


curl \
URL/card/42344/ \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJ********0E'

In case of correct request, the response should be the following with non-sensitive card
details.

For example:

{
“cardId”: 42344,
“lastFour”: 1111,
“firstName”: “Jane”,
“lastName”: “Doe”,
“expMonth”: 12,
“expYear”: 2023,
“enrolledAt”: 20200101-0800,
}

How can we help?