Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 704 Bytes

File metadata and controls

31 lines (22 loc) · 704 Bytes

get

Retrieve a Source MandateNotification

Retrieves a new Source MandateNotification.

API Endpoint: GET /v1/sources/{source}/mandate_notifications/{mandate_notification}

Synchronous Client

from os import getenv
from sideko_stripe import Stripe

client = Stripe(token=getenv("API_TOKEN"))
res = client.source.mandate_notifications.get(
    mandate_notification="string", source="string"
)

Asynchronous Client

from os import getenv
from sideko_stripe import AsyncStripe

client = AsyncStripe(token=getenv("API_TOKEN"))
res = await client.source.mandate_notifications.get(
    mandate_notification="string", source="string"
)