v5

latestOpenAPI 3.1.02026-07-262421791.5 MB
digital-wallet

List payment tokens for a card

You have the option to obtain the payment tokens associated with a card, which can assist in determining if it's already linked to a specific wallet. Note that the payment token status associated with the card may not be accurate (for example, after a phone factory reset). Therefore, it's advisable to consistently check the wallet instance for the most up-to-date token status.

post/v3/spend/profiles/{profileId}/cards/{cardToken}/payment-tokens

Path parameters

profileIdinteger required

The profile ID.

cardTokenstring uuid required

The card token.

Headers

X-External-Correlation-Idstring uuid

Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.

Request body

walletNamesstring[]

List of supported wallet types.

Example request

{
  "walletNames": [
    "APPLE_PAY",
    "GOOGLE_PAY"
  ]
}

Response

Returns all the payment tokens except deactivated.

Example response

{
  "paymentTokens": [
    {
      "cardToken": "a3f90c98-1cd1-4488-9050-2e32c696f8fa",
      "walletName": "GOOGLE_PAY",
      "paymentTokenUniqueReference": "DSHRMC0000255389d1106783179b420aa5b5ca09ba2f12b8",
      "panUniqueReference": "FSHRMC000025538959679bc73c9d4fdc8031b20fa91d0e3b",
      "provisioningStatus": "ACTIVE",
      "creationTime": "2025-10-02T21:26:00.377756354Z",
      "modificationTime": "2025-10-02T21:26:00.378182498Z"
    }
  ]
}