# How-To: Update Account Information

Log in to the LatticaAI web console to update account information using your credentials. Once logged in, follow the steps below.

***

## Steps to Update Account Information

<figure><img src="/files/ndYPbCEhDAe5tFUTCwlI" alt=""><figcaption></figcaption></figure>

{% stepper %}
{% step %}
Use the **sidebar menu** to go to the **Account Details** section.
{% endstep %}

{% step %}
V**iew Your Account ID**

{% hint style="info" %}
The account ID field is **view-only** and cannot be edited.
{% endhint %}
{% endstep %}

{% step %}
E**dit Contact Information**

Click Edit to start editing

Click Save to save your changes&#x20;
{% endstep %}

{% step %}
**Generate new License**
{% endstep %}
{% endstepper %}

***

{% tabs %}
{% tab title="🧊 Python SDK" %}

```python
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")

params = {
    "companyName": "Tech Innovators Inc.",    # Optional: New company name
    "contactName": "Jane Doe",                # Optional: New contact person name
    "email": "jane.doe@techinnovators.com",   # Optional: Updated unique email address
    "phoneNumber": "+1-555-123-4567",         # Optional: Updated contact phone number
}

transactions = agent_app.account.update_account_info(params)

```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://platformdocs.lattica.ai/how-to-guides/account-and-finance-operations/how-to-update-account-information.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
