steampipe plugin install marekjalovec/make

Table: make_user

Existing Users within your account, and their attributes.

Key columns

  • Provide a numeric id if you want to query for a specific User.
  • Provide a numeric organization_id, or team_id to query Users for a specific Organization, or a Team. This can be either set directly in a where clause, or specified as part of join with another table.

Caveat

  • Thanks to the structure of the Make API, Users can appear in the response multiple times if you query this table. Use distinct, or group by to get unique records.

Examples

List of all Users in the account

select
distinct id,
name
from
make_user
order by
name;

List of all Users in an Organization, or a Team

-- organization
select
distinct id,
name
from
make_user
where
organization_id = 1
order by
name;
-- team
select
distinct id,
name
from
make_user
where
team_id = 1
order by
name;

List of all Users who logged in the last 30 days

select
distinct id,
name,
last_login
from
make_user
where
last_login > now() - interval '30 days'
order by
name;

Schema for make_user

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
avatartextGravatar URL for the User.
country_idbigintThe ID of the country associated with the User.
emailtextUser's email.
featuresjsonbFeatures enabled for the User.
idbigintThe user ID.
languagetextEnvironment language.
last_logintimestamp with time zoneDate and time of the last login.
locale_idbigintEnvironment locale - date and hour formats, decimal separators etc.
nametextThe name of the User.
organization_idbigintVirtual column, used to map the entity to another object.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
team_idbigintVirtual column, used to map the entity to another object.
timezone_idbigintThe ID of the timezone associated with the User.
titletextThe display name for the resource.