steampipe plugin install tomba-io/tomba

Table: tomba_account

Get detailed information of current account.

Examples

Get the Account Information

select
first_name,
last_name,
email,
timezone,
country,
pricing
from
tomba_account;

List the accounts created in the last 30 days

select
first_name,
last_name,
email,
timezone,
country,
pricing
from
tomba_account
where
created_at >= now() - interval '30' day;

Schema for tomba_account

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
countrytextYour Account country, Your country is detected automatically.
created_attimestamp with time zoneThe date of your account's creation.
emailtextYour Account email address.
first_nametextYour Account First name.
last_nametextYour Account Last name.
pricingtextThe Subscription plan name.
secret_tokentextYour Account API secret.
timezonetextYour Account timezone.
user_idbigintYour Account USER ID.