freshservice_agentfreshservice_agent_rolefreshservice_announcementfreshservice_assetfreshservice_asset_componentfreshservice_asset_contractfreshservice_asset_typefreshservice_business_hourfreshservice_changefreshservice_change_notefreshservice_contractfreshservice_contract_typefreshservice_departmentfreshservice_locationfreshservice_problemfreshservice_problem_notefreshservice_problem_taskfreshservice_problem_timeentryfreshservice_productfreshservice_purchase_orderfreshservice_releasefreshservice_release_notefreshservice_release_taskfreshservice_release_timeentryfreshservice_requesterfreshservice_servicefreshservice_sla_policyfreshservice_softwarefreshservice_software_installationfreshservice_software_userfreshservice_solution_articlefreshservice_solution_categoryfreshservice_solution_folderfreshservice_ticketfreshservice_ticket_conversationfreshservice_ticket_taskfreshservice_ticket_timeentryfreshservice_vendor
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_taskwhere problem_id = 2011111111;
List all overdue tasks of a specific problem
select *from freshservice_problem_taskwhere problem_id = 2011111111 and due_date < NOW() :: timestamp;
Schema for freshservice_problem_task
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
agent_id | bigint | User ID of the agent to whom the task is assigned | |
closed_at | timestamp with time zone | Timestamp at which the task was closed. | |
created_at | timestamp with time zone | Timestamp at which the task was created. | |
description | text | Description of the task. | |
due_date | timestamp with time zone | Timestamp that denotes the due date of the task. | |
group_id | bigint | ID of the group to which the task is assigned. | |
id | bigint | ID of the task. | |
notify_before | bigint | Time in seconds before which notification is sent prior to due date. | |
problem_id | bigint | = | ID of the problem the task belongs to. |
status | bigint | Status of the task. | |
status_desc | text | Description of the task status. | |
title | text | Title of the task. | |
updated_at | timestamp with time zone | Timestamp at which the task was last updated. |