Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 514 Bytes

File metadata and controls

27 lines (18 loc) · 514 Bytes

get

Retrieve a Mandate

Retrieves a Mandate object.

API Endpoint: GET /v1/mandates/{mandate}

Synchronous Client

from os import getenv
from sideko_stripe import Stripe

client = Stripe(token=getenv("API_TOKEN"))
res = client.mandates.get(mandate="string")

Asynchronous Client

from os import getenv
from sideko_stripe import AsyncStripe

client = AsyncStripe(token=getenv("API_TOKEN"))
res = await client.mandates.get(mandate="string")