theapsgroup/freshservice
steampipe plugin install theapsgroup/freshservice

Table: freshservice_department

Obtain information about Departments stored within the FreshService instance.

Examples

List all Departments

select
*
from
freshservice_department;

Obtain a specific Department by ID

select
*
from
freshservice_department
where
id = 123456789;

Schema for freshservice_department

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
created_attimestamp with time zoneTimestamp when the department was created.
descriptiontextDescription about the department.
domainsjsonbArray of email domains associated with the department.
head_user_idbigintUser ID of the agent or requester who serves as the head of the department.
idbigint=ID of the department.
nametextName of the department.
prime_user_idbigintUser ID of the agent or requester who serves as the prime user of the department.
updated_attimestamp with time zoneTimestamp when the department was last updated.