How-To: Update Account Information
PreviousHow-To: View Payment Transaction HistoryNextHow-To: View Credit Balance and Add Credit to Your Account
Last updated
Last updated
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": "[email protected]", # Optional: Updated unique email address
"phoneNumber": "+1-555-123-4567", # Optional: Updated contact phone number
}
transactions = agent_app.account.update_account_info(params)