GET/physical_card_profiles

List physical card profiles

Lists physical card profiles that define artwork and metadata for physical cards. Use status.in to filter by profile status or idempotency_key to find a specific profile. Use cursor to retrieve subsequent pages of results.

4 parameters
cursorstringoptional
Return the page of entries after this cursor.
limitintegeroptional
Maximum number of physical card profiles to return. Defaults to 100 when omitted; the maximum is 100 and the value must be at least 1.
Default:100
status.inarray<string>optional
Filter by profile status using a comma-delimited list of `pending_creating`, `pending_reviewing`, `rejected`, `pending_submitting`, `active`, or `archived` values.
idempotency_keystringoptional
Filter for the physical card profile associated with this idempotency key. Must contain between 1 and 200 characters.

3 status codes
200Returns a list of physical card profile objects and a `next_cursor` value for retrieving the next page; `next_cursor` is null when there are no further results.
dataarray<PhysicalCardProfile>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 cannot be processed because of a client-side error.
5XXReturned when the request cannot be processed because of a server-side error.

Error handling

status.in values must be pending_creating, pending_reviewing, rejected, pending_submitting, active, or archived. When supplied, idempotency_key must contain between 1 and 200 characters; limit must be at least 1 and is capped at 100.