theapsgroup/freshservice
steampipe plugin install theapsgroup/freshservice

Table: freshservice_change_note

Obtain information about Notes attached to Changes in the FreshService instance.

You MUST specify a change_id in the WHERE or JOIN clause.

Examples

List all change notes for a specific change

select
*
from
freshservice_change_note
where
change_id = 12345;

Schema for freshservice_change_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.
change_idbigint=ID of the Change this note belongs to.
created_attimestamp with time zoneTimestamp at which the note was created.
idbigintID of the change note.
notify_emailsjsonbArray of email addresses to which notifications are sent.
updated_attimestamp with time zoneTimestamp at which the note was updated.
user_idbigintUser ID of the user who created the note.