How-To: View Payment Transaction History
The Transaction History feature in the web console allows you to track all financial transactions associated with your account. This includes payment details, credits received, and a summary of your financial activity over time. You can also view your current credit balance and add credits directly from this page.
Steps to View Transaction History

1
2
3
4
import lattica_common.auth_local_state as auth
import lattica_common.app_api as agent_app
# Notice your account token expires every 30 days and it's up to you to renew it
auth.set_session_token("your_account_token_you_got_in_your_email")
transactions = agent_app.account.get_transactions_history()
Last updated
Was this helpful?