List all TransactionEntries
Retrieves a list of TransactionEntry objects.
API Endpoint: GET /v1/treasury/transaction_entries
from os import getenv
from sideko_stripe import Stripe
client = Stripe(token=getenv("API_TOKEN"))
res = client.treasury.transaction_entry.list(financial_account="string")from os import getenv
from sideko_stripe import AsyncStripe
client = AsyncStripe(token=getenv("API_TOKEN"))
res = await client.treasury.transaction_entry.list(financial_account="string")Retrieve a TransactionEntry
Retrieves a TransactionEntry object.
API Endpoint: GET /v1/treasury/transaction_entries/{id}
from os import getenv
from sideko_stripe import Stripe
client = Stripe(token=getenv("API_TOKEN"))
res = client.treasury.transaction_entry.get(id="string")from os import getenv
from sideko_stripe import AsyncStripe
client = AsyncStripe(token=getenv("API_TOKEN"))
res = await client.treasury.transaction_entry.get(id="string")