Skip to main content
GET
/
v1
/
card
/
{cardId}
/
tokens
Get tokens for a given cardId
curl --request GET \
  --url 'https://integration-api-cat2.{{environment}}.ext.{{realm}}.cia.enfuce.com/wallet/v1/card/{cardId}/tokens' \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "tokenUniqueReferenceId": "<string>",
    "tokenRequestorId": "<string>",
    "tokenNumber": "<string>",
    "tokenId": "<string>",
    "walletProvider": "<string>",
    "status": "ACTIVE"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.enfuce.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

cardId
string
required

CardId for given card

Query Parameters

auditUser
string
required

The audit user to log the request

Response

Successful lookup of tokens for given card id

tokenUniqueReferenceId
string

Token unique reference id

tokenRequestorId
string

Identifier used by merchants and wallet providers to request tokens from the TSP

tokenNumber
string

Scheme assigned token number.

tokenId
string<bigint>

Enfuce generated token ID from the scheme provided message. This ID is used within Enfuce systems for tracking, support, and operational purposes.

walletProvider
string

Wallet provider name

status
enum<string>
  • ACTIVE - Available for payments
  • DEACTIVATED - Permanently deactivated
  • INACTIVE - Waiting for activation
  • SUSPENDED - Temporarily not available for payments
  • SOFTDELETED - Deleted from consumer device
Available options:
ACTIVE,
DEACTIVATED,
INACTIVE,
SUSPENDED,
SOFTDELETED