theapsgroup/freshservice
steampipe plugin install theapsgroup/freshservice

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_note
where
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 note
from
freshservice_problem p
left join freshservice_problem_note n on p.id = n.problem_id;

Schema for freshservice_problem_note

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
bodytextThe body of the note in HTML format.
body_texttextThe body of the note in plain text format.
created_attimestamp with time zoneTimestamp at which the note was created.
idbigintID of the problem note.
notify_emailsjsonbArray of addresses to which notifications are sent.
problem_idbigint=ID of the problem this note belongs to.
updated_attimestamp with time zoneTimestamp at which the note was last updated.
user_idbigintUser ID of the user who created the note.