# `Stripe.Services.Issuing.PhysicalBundleService`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/services/issuing/physical_bundle_service.ex#L2)

IssuingPhysicalBundle

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.

# `list`

```elixir
@spec list(Stripe.Client.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

List all 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.

# `retrieve`

```elixir
@spec retrieve(Stripe.Client.t(), String.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

Retrieve a physical bundle

Retrieves a physical bundle object.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
