v47

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-012382333.4 MB

List Digital Wallet Tokens

get/digital_wallet_tokens

Query parameters

cursorstring

Return the page of entries after this one.

limitinteger

Limit the size of the list that is returned. The default (and maximum) is 100 objects.

card_idstring

Filter Digital Wallet Tokens to ones belonging to the specified Card.

created_at.afterstring date-time

Return results after this ISO 8601 timestamp.

created_at.beforestring date-time

Return results before this ISO 8601 timestamp.

created_at.on_or_afterstring date-time

Return results on or after this ISO 8601 timestamp.

created_at.on_or_beforestring date-time

Return results on or before this ISO 8601 timestamp.

Response

Digital Wallet Token List

next_cursorstring nullable required

A pointer to a place in the list. Pass this as the cursor parameter to retrieve the next page of results. If there are no more results, the value will be null.

Example response

{
  "data": [
    {
      "card_id": "card_oubs0hwk5rn6knuecxg2",
      "cardholder": {
        "name": "John Smith"
      },
      "created_at": "2020-01-31T23:59:59Z",
      "device": {
        "device_type": "mobile_phone",
        "identifier": "04393EADF4149002225811273840459271E36516DA4875FF",
        "ip_address": "1.2.3.4",
        "name": "My Work Phone"
      },
      "dynamic_primary_account_number": null,
      "id": "digital_wallet_token_izi62go3h51p369jrie0",
      "status": "active",
      "token_requestor": "apple_pay",
      "type": "digital_wallet_token",
      "updates": [
        {
          "status": "inactive",
          "timestamp": "2020-01-31T23:59:59Z"
        }
      ]
    }
  ],
  "next_cursor": "v57w5d"
}