theapsgroup/freshservice
steampipe plugin install theapsgroup/freshservice

Table: freshservice_problem_task

Obtain tasks based on an associated Problem in the FreshService instance.

You MUST specify a problem_id in the WHERE or JOIN clause.

Examples

List all tasks on a specific Problem

select
*
from
freshservice_problem_task
where
problem_id = 2011111111;

List all overdue tasks of a specific problem

select
*
from
freshservice_problem_task
where
problem_id = 2011111111
and due_date < NOW() :: timestamp;

Schema for freshservice_problem_task

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
agent_idbigintUser ID of the agent to whom the task is assigned
closed_attimestamp with time zoneTimestamp at which the task was closed.
created_attimestamp with time zoneTimestamp at which the task was created.
descriptiontextDescription of the task.
due_datetimestamp with time zoneTimestamp that denotes the due date of the task.
group_idbigintID of the group to which the task is assigned.
idbigintID of the task.
notify_beforebigintTime in seconds before which notification is sent prior to due date.
problem_idbigint=ID of the problem the task belongs to.
statusbigintStatus of the task.
status_desctextDescription of the task status.
titletextTitle of the task.
updated_attimestamp with time zoneTimestamp at which the task was last updated.