Sample - Stripe API
GET/v1/issuing/physical_bundles

List physical bundles

Lists physical bundles in descending creation order, with the most recently created bundle first. Filter results by status or type, and use starting_after or ending_before to navigate between pages. Use limit to control page size and expand to request expanded fields.

  • RetriesRetries up to 2×, 500ms backoff, 30s timeout.

6 parameters
ending_beforestringoptional
Cursor identifying an object before which to return the previous page. Maximum 5000 characters.
expandarray<string>optional
Fields to expand in the response. Each field name may be up to 5000 characters.
limitintegeroptional
Number of physical bundles to return, from 1 to 100. Defaults to 10 when omitted.
starting_afterstringoptional
Cursor identifying an object after which to return the next page. Maximum 5000 characters.
statusstringoptional
Filter by physical bundle status: active, inactive, or review.
Allowed:activeinactivereview
typestringoptional
Filter by physical bundle type: custom or standard.
Allowed:customstandard

2 status codes
200Returns a list object containing physical bundle objects, a `has_more` indicator, the list object type, and the list URL.
dataarray<PhysicalBundle>required
has_morebooleanrequired
True if this list has another page of items after this one that can be fetched.
objectstringrequired
String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
Allowed:list
urlstringrequired
The URL where this list can be accessed.
defaultReturned when the request cannot be processed; the response contains an `error` object with a reason and error type.
errorobjectrequired

Error handling

limit must be between 1 and 100 and defaults to 10 when omitted. status must be one of: active, inactive, or review, and type must be custom or standard.