theapsgroup/freshservice
steampipe plugin install theapsgroup/freshservice

Table: freshservice_software_user

Obtain information Users assigned to Software.

Examples

List all users of a specific software

select
*
from
freshservice_software_user
where
software_id = 20585369;

Get a specific user for a software

select
*
from
freshservice_software_user
where
software_id = 20585369
and id = 1008564;

Schema for freshservice_software_user

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
allocated_datetimestamp with time zoneTimestamp when the license was allocated.
created_attimestamp with time zoneTimestamp when the installation was created.
first_usedtimestamp with time zoneTimestamp when the software was first used by the user.
idbigint=ID of the software-user combination.
last_usedtimestamp with time zoneTimestamp when the software was last used by the user.
license_idbigintDisplay ID of the allocated software license contract.
software_idbigint=ID of the software this installation belong to.
updated_attimestamp with time zoneTimestamp when the installation was last updated.
user_idbigintID of the user using the software.