GET
/
cards
/
digital_wallet_tokens
List Digital Wallet Tokens
curl --request GET \
  --url https://api.synctera.com/v1/cards/digital_wallet_tokens \
  --header 'Authorization: Bearer <token>'
{
  "next_page_token": "a8937a0d",
  "digital_wallet_tokens": [
    {
      "approved_time": "2010-05-06T12:23:34.321Z",
      "card_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "device": {
        "device_id": "<string>",
        "ip_address": "1.12.123.255",
        "location": "+22.20/-159.50",
        "name": "<string>",
        "token": "<string>",
        "type": "APPLIANCE"
      },
      "device_id": "<string>",
      "device_type": "APPLIANCE",
      "id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "last_updated_time": "2010-05-06T12:23:34.321Z",
      "processor_data": {},
      "removed_from_wallet_time": "2010-05-06T12:23:34.321Z",
      "requested_time": "2010-05-06T12:23:34.321Z",
      "state": "ACTIVE",
      "tenant": "abcdef_ghijkl",
      "token_reference_id": "<string>",
      "type": "APPLE_PAY"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page_token
string

Optional pagination token to be provided to retrieve subsequent pages, returned from previous get

Example:

"a8937a0d"

limit
integer
default:100

Maximum number of objects to return per page. If the limit is greater than 100, then it will be set to 100.

Required range: x >= 1
Example:

100

token_state
enum<string>

The status of the Digital Wallet Token

Available options:
ACTIVE,
REQUESTED,
REQUEST_DECLINED,
SUSPENDED,
TERMINATED
card_id
string<uuid>

The unique identifier of a card

Example:

"7d943c51-e4ff-4e57-9558-08cab6b963c7"

Response

200
application/json

List of Digital Wallet Tokens of a card <br>NB: Digital wallet tokens cannot be created outside of production</br>

The response is of type object.