GET/card_tokens

List card tokens

Lists card tokens used for Card Push Transfers and Card Validations. Use cursor to continue through results and the creation-time filters to narrow the list; each page contains up to 100 objects. Results include a next_cursor value when another page is available.

6 parameters
cursorstringoptional
Pagination cursor identifying the position after which to return entries.
limitintegeroptional
Maximum number of card tokens to return. Must be at least 1 and no greater than 100. Defaults to 100 when omitted.
Default:100
created_at.afterstringoptional
Return results created after this ISO 8601 timestamp.
created_at.beforestringoptional
Return results created before this ISO 8601 timestamp.
created_at.on_or_afterstringoptional
Return results created at or after this ISO 8601 timestamp.
created_at.on_or_beforestringoptional
Return results created at or before this ISO 8601 timestamp.

3 status codes
200Returns a page containing an array of card token objects and a `next_cursor` value for retrieving the next page; the cursor is null when there are no more results.
dataarray<CardToken>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 is invalid or cannot be processed.
5XXReturned when the server encounters an error processing the request.

Error handling

limit must be at least 1 and no greater than 100; it defaults to 100 when omitted. Supply created_at.after, created_at.before, created_at.on_or_after, and created_at.on_or_before as ISO 8601 timestamps.