Stripe | Financial Infrastructure to Grow Your Revenue

Stripe | Financial Infrastructure to Grow Your Revenue

5282 articles

Physical Bundles


Physical Bundles

A Physical Bundle represents the bundle of physical items - card stock, carrier letter, and envelope - that is shipped to a cardholder when you create a physical card.

Was this section helpful? Yes No

Retrieve a physical bundle

GET / v1 / issuing / physical_bundles /:id

List all physical bundles

GET / v1 / issuing / physical_bundles

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"}
Last verified 2026-09-25

Is this helpful?