Get Card Payment Tokens

The Get Card Payment Tokens endpoint enables you to retrieve the list of payment tokens associated with a card. You can retrieve the payment tokens by making a GET request to the Payment Tokens endpoint. For example:

{{base-url}}/cards/{{publicToken}}/payment-tokens

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

[
    {
        "id": 6783,
        "walletId": "APPLE",
        "tokenPAN": "1321",
        "status": {
            "tokenisationStatus": {
                "code": "-",
                "description": "Invalid"
            },
            "authorisationDecision": {
                "code": "A",
                "description": "Accepted"
            },
            "authorisationStatus": {
                "code": "A",
                "description": "Accepted"
            },
            "gpsStatus": "Deactivated"
        },
        "tokenisedDate": "17/01/2020 08:48:06",
        "expiryDate": "31/12/2022 00:00:00"
    }
]

👍

API Explorer

See the Get a list of Card Payment Tokens endpoint.