Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 586 Bytes

File metadata and controls

27 lines (18 loc) · 586 Bytes

list

List all SetupAttempts

Returns a list of SetupAttempts that associate with a provided SetupIntent.

API Endpoint: GET /v1/setup_attempts

Synchronous Client

from os import getenv
from sideko_stripe import Stripe

client = Stripe(token=getenv("API_TOKEN"))
res = client.setup_attempt.list(setup_intent="string")

Asynchronous Client

from os import getenv
from sideko_stripe import AsyncStripe

client = AsyncStripe(token=getenv("API_TOKEN"))
res = await client.setup_attempt.list(setup_intent="string")