Table: tomba_account
Get detailed information of current account.
Examples
Get the Account Information
select first_name, last_name, email, timezone, country, pricingfrom tomba_account;
List the accounts created in the last 30 days
select first_name, last_name, email, timezone, country, pricingfrom tomba_accountwhere created_at >= now() - interval '30' day;
Schema for tomba_account
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
country | text | Your Account country, Your country is detected automatically. | |
created_at | timestamp with time zone | The date of your account's creation. | |
text | Your Account email address. | ||
first_name | text | Your Account First name. | |
last_name | text | Your Account Last name. | |
pricing | text | The Subscription plan name. | |
secret_token | text | Your Account API secret. | |
timezone | text | Your Account timezone. | |
user_id | bigint | Your Account USER ID. |