Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.23 KB

File metadata and controls

54 lines (36 loc) · 1.23 KB

list

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

Synchronous Client

from os import getenv
from sideko_stripe import Stripe

client = Stripe(token=getenv("API_TOKEN"))
res = client.issuing.physical_bundle.list()

Asynchronous Client

from os import getenv
from sideko_stripe import AsyncStripe

client = AsyncStripe(token=getenv("API_TOKEN"))
res = await client.issuing.physical_bundle.list()

get

Retrieve a physical bundle

Retrieves a physical bundle object.

API Endpoint: GET /v1/issuing/physical_bundles/{physical_bundle}

Synchronous Client

from os import getenv
from sideko_stripe import Stripe

client = Stripe(token=getenv("API_TOKEN"))
res = client.issuing.physical_bundle.get(physical_bundle="string")

Asynchronous Client

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")