GET /v1/sources/{source}/source_transactions
List source transactions for a given source.
API Endpoint: GET /v1/sources/{source}/source_transactions
from os import getenv
from sideko_stripe import Stripe
client = Stripe(token=getenv("API_TOKEN"))
res = client.source.source_transactions.list(source="string")from os import getenv
from sideko_stripe import AsyncStripe
client = AsyncStripe(token=getenv("API_TOKEN"))
res = await client.source.source_transactions.list(source="string")Retrieve a source transaction
Retrieve an existing source transaction object. Supply the unique source ID from a source creation request and the source transaction ID and Stripe will return the corresponding up-to-date source object information.
API Endpoint: GET /v1/sources/{source}/source_transactions/{source_transaction}
from os import getenv
from sideko_stripe import Stripe
client = Stripe(token=getenv("API_TOKEN"))
res = client.source.source_transactions.get(
source="string", source_transaction="string"
)from os import getenv
from sideko_stripe import AsyncStripe
client = AsyncStripe(token=getenv("API_TOKEN"))
res = await client.source.source_transactions.get(
source="string", source_transaction="string"
)