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_note
Obtain information about Notes attached to Problems in the FreshService instance.
You MUST specify a problem_id
in the WHERE
or JOIN
clause.
Examples
List all notes for a specific problem
select *from freshservice_problem_notewhere problem_id = 12345;
List all notes of all problems
select p.id, p.description_text, p.priority_desc, n.id as note_id, n.body_text as notefrom freshservice_problem p left join freshservice_problem_note n on p.id = n.problem_id;
Schema for freshservice_problem_note
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
body | text | The body of the note in HTML format. | |
body_text | text | The body of the note in plain text format. | |
created_at | timestamp with time zone | Timestamp at which the note was created. | |
id | bigint | ID of the problem note. | |
notify_emails | jsonb | Array of addresses to which notifications are sent. | |
problem_id | bigint | = | ID of the problem this note belongs to. |
updated_at | timestamp with time zone | Timestamp at which the note was last updated. | |
user_id | bigint | User ID of the user who created the note. |