GET
/digital_card_profilesList Digital Card Profiles
Lists Digital Card Profiles that contain artwork and metadata for a card's appearance in digital wallet apps. Filter by profile status or idempotency_key, and use cursor to retrieve subsequent pages.
cursorstringoptional
Return the page of entries after this cursor.
limitintegeroptional
Maximum number of profiles to return. Must be at least 1; defaults to 100 when omitted, and the maximum is 100.
status.inarray<string>optional
Filter by one or more profile statuses, encoded as a comma-delimited list: `pending`, `rejected`, `active`, or `archived`.
idempotency_keystringoptional
Filter for the profile with this idempotency key. Must be between 1 and 200 characters.
200Returns a page containing Digital Card Profile objects and a `next_cursor` value for retrieving the next page, or null when there are no more results.
dataarray<DigitalCardProfile>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. Each value in status.in must be pending, rejected, active, or archived, and idempotency_key must be between 1 and 200 characters.