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_timeentry
Obtain time entries for a specific Problem in the FreshService instance.
You MUST specify a problem_id
in the WHERE
or JOIN
clause.
Examples
List all time entries for a specific Problem
select *from freshservice_problem_timeentrywhere problem_id = 2011111111;
Schema for freshservice_problem_timeentry
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 this time entry is assigned. | |
billable | boolean | Set as true if the time entry is billable. | |
created_at | timestamp with time zone | Timestamp when the time entry is created. | |
executed_at | timestamp with time zone | Timestamp when the timer is executed. | |
id | bigint | ID of the time entry. | |
note | text | Description of the time entry. | |
problem_id | bigint | = | ID of the problem the time entry belongs to. |
start_time | timestamp with time zone | Timestamp when the time entry is added. If a timer, which is in stopped state, is started again, this holds date_time at which the timer is started again. | |
task_id | bigint | ID of the task associated with the time entry. | |
time_spent | text | The total amount of time spent by the timer in hh::mm format. | |
timer_running | boolean | Set to true if timer is currently running. | |
updated_at | timestamp with time zone | Timestamp when the time entry was last updated. |