LatticaAI Documentation
  • Welcome to LatticaAI
  • Conceptual Guide
  • Architecture Overview
    • Management Client
    • Query Client
  • Platform Workflows
    • Account Management
    • Model Management
    • User Access Management
    • Query Submission
    • Credit Management
    • Worker Management
  • How-To Guides
    • Client Installation
      • How-To: Install Management Client
      • How-To: Install Query Client
    • Model Lifecycle
      • How-To: Deploy AI model
      • How-To: Modify AI Model Settings
    • Access Control
      • How-To: Create User Access Token
      • How-To: Modify User Access Token Setting
      • How-To: Remove Token's Assignment
      • How-To: Assign Token to Model
      • How-To: See List of Tokens
    • Resource Management
      • How-To: Start Worker
      • How-To: Stop Worker
      • How-To: Monitor Worker Performance
    • Secure Query Processing
      • How To: Upload Evaluation Key
      • How-To: Encrypt Input Message
      • How To: Execute Query
      • How-To: Decrypt Output Data
      • How-To: Encrypt, Execute, and Decrypt in One Step
    • Account and Finance Operations
      • How-To: View Payment Transaction History
      • How-To: Update Account Information
      • How-To: View Credit Balance and Add Credit to Your Account
      • How-To: Monitor Balance and Usage
  • Demo Tutorials
    • Image Sharpening with LatticaAI Demo Tutorial
    • Sentiment Analysis with LatticaAI Demo Tutorial
    • Health Analysis with LatticaAI Demo Tutorial
    • Digit Recognition with LatticaAI Demo Tutorial
    • Zooming Into Each Step of Demo Run with LatticaAI flow
Powered by GitBook
On this page

Was this helpful?

  1. How-To Guides
  2. Account and Finance Operations

How-To: View Payment Transaction History

PreviousAccount and Finance OperationsNextHow-To: Update Account Information

Last updated 3 months ago

Was this helpful?

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

Navigate to the Finance Page

  • Log in to the web console using your credentials.

  • Go to the Finance page, where you will see the Finance Dashboard.

2

View Payment Transactions

  • The dashboard displays a detailed list of all payment transactions.

  • For each transaction, you can see:

    • Billing Amount: The payment amount.

    • Charge Date: The date of the transaction.

    • Credits Amount: The number of credits added to your account.

3

Explore the Summary Chart

  • The dashboard also includes a summary chart of monthly payments over the past year.

  • Use the summary chart to understand your payment patterns and plan for future credit needs.

  • Future Feature: This chart will also show a monthly breakdown of credit usage in upcoming releases.

4

Check Your Current Credit Balance

  • The page prominently displays your account's current credit balance.

  • This lets you quickly see whether additional credits are needed to maintain operations.

5

Make a New Payment

  • Use the Add Credits option on the dashboard to purchase additional credits.

  • Payments are processed instantly, and credits are added to your account immediately.

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()


Finance Data