theapsgroup/freshservice
steampipe plugin install theapsgroup/freshservice

Table: freshservice_release_note

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

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

Examples

List all notes for a specific release

select
*
from
freshservice_release_note
where
release_id = 200012345;

Schema for freshservice_release_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 release note.
notify_emailsjsonbArray of addresses to which notifications are sent.
release_idbigint=ID of the release this note belongs to.
updated_attimestamp with time zoneTimestamp at which the note was updated.
user_idbigintUser ID of who created the note.