Stripe | Financial Infrastructure to Grow Your Revenue

Stripe | Financial Infrastructure to Grow Your Revenue

4466 articles

The Physical Bundle object


The Physical Bundle object

Attributes

  • id string Unique identifier for the object.
  • object string, value is "issuing.physical_bundle" String representing the object’s type. Objects of the same type share the same value.
  • features object Information about the features available for this physical bundle.
  • livemode boolean If the object exists in live mode, the value is true. If the object exists in test mode, the value is false.
  • name string Friendly display name.
  • status enum Whether this physical bundle can be used to create cards. Possible enum values active Can be used to create cards that fulfill immediately. inactive Cannot be used to create cards. review Can be used to create cards but cards will only be fulfilled when this physical bundle is activated.
  • type enum Whether this physical bundle is a standard Stripe offering or custom-made for you. Possible enum values custom Available only to you, you manage design and inventory. standard Publicly available, Stripe manages design and inventory.

The Physical Bundle object

{ "id": "ics_NLuXJPDYSTjFON", "object": "issuing.physical_bundle", "livemode": false, "name": "US Visa Credit White", "features": { "card_logo": "required", "carrier_text": "optional" }, "status": "active", "type": "standard"}

Retrieve a physical bundle

GET / v1 / issuing / physical_bundles /:id

Retrieves a physical bundle object.

Parameters

No parameters.

Returns

Returns the physical bundle object.

Response

{ "id": "ics_NLuXJPDYSTjFON", "object": "issuing.physical_bundle", "livemode": false, "name": "US Visa Credit White", "features": { "card_logo": "required", "carrier_text": "optional" }, "status": "active", "type": "standard"}

List all physical bundles

GET / v1 / issuing / physical_bundles

Returns a list of physical bundle objects. The objects are sorted in descending order by creation date, with the most recently created object appearing first.

Parameters

  • status enum Only return physical bundles with the given status. Possible enum values active Can be used to create cards that fulfill immediately. inactive Cannot be used to create cards. review Can be used to create cards but cards will only be fulfilled when this physical bundle is activated.
  • type enum Only return physical bundles with the given type. Possible enum values custom Available only to you, you manage design and inventory. standard Publicly available, Stripe manages design and inventory.

More parameters

  • ending _ before string
  • limit integer
  • starting _ after string

Returns

A dictionary with a data property that contains an array of up to limit cards, starting after card starting_after. Each entry in the array is a separate physical bundle object. If no more cards are available, the resulting array will be empty.

Response

Last verified 2026-09-24

Is this helpful?