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.
API Endpoint: GET /v1/issuing/physical_bundles
from os import getenv
from sideko_stripe import Stripe
client = Stripe(token=getenv("API_TOKEN"))
res = client.issuing.physical_bundle.list()from os import getenv
from sideko_stripe import AsyncStripe
client = AsyncStripe(token=getenv("API_TOKEN"))
res = await client.issuing.physical_bundle.list()Retrieve a physical bundle
Retrieves a physical bundle object.
API Endpoint: GET /v1/issuing/physical_bundles/{physical_bundle}
from os import getenv
from sideko_stripe import Stripe
client = Stripe(token=getenv("API_TOKEN"))
res = client.issuing.physical_bundle.get(physical_bundle="string")from os import getenv
from sideko_stripe import AsyncStripe
client = AsyncStripe(token=getenv("API_TOKEN"))
res = await client.issuing.physical_bundle.get(physical_bundle="string")