GET
/digital_wallet_tokensList Digital Wallet Tokens
Lists Digital Wallet Tokens created when users add a card to a digital wallet. Filter results by card or creation time, and use cursor to retrieve subsequent pages.
cursorstringoptional
Return the page of entries after this cursor.
limitintegeroptional
Maximum number of tokens to return. Must be at least 1; defaults to 100 when omitted, and the maximum is 100.
card_idstringoptional
Filter Digital Wallet Tokens to those belonging to this Card.
created_at.afterstringoptional
Return results after this ISO 8601 date-time timestamp.
created_at.beforestringoptional
Return results before this ISO 8601 date-time timestamp.
created_at.on_or_afterstringoptional
Return results on or after this ISO 8601 date-time timestamp.
created_at.on_or_beforestringoptional
Return results on or before this ISO 8601 date-time timestamp.
200Returns a page containing Digital Wallet Token objects and a `next_cursor` value for retrieving the next page, or null when there are no more results.
dataarray<DigitalWalletToken>required
The contents of the list.
next_cursorstringrequired
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`.
4XXReturned when the request results in a client error.
5XXReturned when the server encounters an error processing the request.
Error handling
limit must be at least 1 and no greater than 100. Date filters must use ISO 8601 date-time values, and card_id must identify a card whose tokens you want to list.