GET
/physical_cardsList physical cards
Lists physical cards, with optional filters for card, creation time, and idempotency key. Use cursor to retrieve the next page and limit to set the page size; the default and maximum limit is 100.
cursorstringoptional
Returns the page of physical cards after this cursor. Omit it to start from the first page.
limitintegeroptional
Maximum number of physical cards to return. Must be at least 1; defaults to 100 when omitted and cannot exceed 100.
card_idstringoptional
Filter results to physical cards belonging to this card.
created_at.afterstringoptional
Filter for physical cards created after this ISO 8601 date-time.
created_at.beforestringoptional
Filter for physical cards created before this ISO 8601 date-time.
created_at.on_or_afterstringoptional
Filter for physical cards created at or after this ISO 8601 date-time.
created_at.on_or_beforestringoptional
Filter for physical cards created at or before this ISO 8601 date-time.
idempotency_keystringoptional
Filter for the physical card with this idempotency key. Must be 1–200 characters.
200Returns a list response containing physical card objects in `data` and a `next_cursor` for retrieving the next page, or null when there is no next page.
dataarray<PhysicalCard>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 service encounters an internal error.
Error handling
limit must be at least 1 and no greater than 100. Date filters must use ISO 8601 date-time values, and idempotency_key must be 1–200 characters.