Retrieve a Source MandateNotification
Retrieves a new Source MandateNotification.
API Endpoint: GET /v1/sources/{source}/mandate_notifications/{mandate_notification}
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"
)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"
)