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_change
Obtain information about Changes in the FreshService instance.
List all changes
select *from freshservice_change;
Obtain changes assigned to a specific agent
select c.id as change_id, c.description_text as change, c.status_desc as status, a.email as agentfrom freshservice_change c inner join freshservice_agent a on c.agent_id = a.idwhere a.id = 12345;
Schema for freshservice_change
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
agent_id | bigint | ID of the agent to whom the change is assigned. | |
approval_status | bigint | Approval status of the change. | |
category | text | Category of the change. | |
created_at | timestamp with time zone | Timestamp at which the change was created. | |
department_id | bigint | ID of the department initiating the change. | |
description | text | HTML content of the change. | |
description_text | text | Plain text content of the change. | |
group_id | bigint | ID of the agent group to which the change is assigned. | |
id | bigint | = | ID of the change. |
impact | bigint | Impact of the change. | |
impact_desc | text | Description of the change impact. | |
item_category | text | Item of the change. | |
planned_end_date | timestamp with time zone | Timestamp at which change is ending. | |
planned_start_date | timestamp with time zone | Timestamp at which change is starting. | |
priority | bigint | Priority of the change. | |
priority_desc | text | Description of the change priority | |
requester_id | bigint | = | User ID of the initiator/requester of the change. |
risk | bigint | Risk of the change. | |
risk_desc | text | Description of the change risk. | |
status | bigint | Status of the change. | |
status_desc | text | Description of the change status. | |
sub_category | text | Sub-category of the change. | |
subject | text | Subject of the change. | |
type | bigint | Type of the change. | |
type_desc | text | Description of the change type. | |
updated_at | timestamp with time zone | Timestamp at which the change was last updated. |