List all SetupAttempts
Returns a list of SetupAttempts that associate with a provided SetupIntent.
API Endpoint: GET /v1/setup_attempts
from os import getenv
from sideko_stripe import Stripe
client = Stripe(token=getenv("API_TOKEN"))
res = client.setup_attempt.list(setup_intent="string")from os import getenv
from sideko_stripe import AsyncStripe
client = AsyncStripe(token=getenv("API_TOKEN"))
res = await client.setup_attempt.list(setup_intent="string")