Note

The Note resource provides details related to a note associated with a contact, incident or other entity within the system. It serves as a way to document and communicate information about a contact or incident.

Events

The following events are available for notes:

Event TypeDescription
note.createdTriggered when a new note is added to an incident or contact
note.updatedTriggered when any note information is modified
note.deletedTriggered when a note is removed

The Note object

Attributes
  • objectstring

    Type of the note, always "Note".

  • idstring

    The unique identifier of the note.

  • statusstring

    The status of the note, either "public" or "private".

  • parent_idstring | null

    The unique identifier of the parent note, if any.

  • notestring

    The content of the note.

  • typestring

    The type of the note indicates the higher level object the note belong ("Enterprise Referral - Liability Decision").

  • repliesArray<Note>

    An array of reply notes.

  • The type of the object the note is associated with, either "Contact" or "Incident".

  • The unique identifier of the object the note is associated with.

  • The timestamp when the note was created.

  • The timestamp when the note was last updated.

Location
interface Note {
  object: "Note";
  id: string;
  status: "public" | "private";
  parent_id: string | null;
  note: string;
  type: string;
  replies: Array<Note>;
  noteable_type: "Contact" | "Incident";
  noteable_id: string;
  created_at: string;
  updated_at: string;
}
Example Attribute
{
  "id": "ez09NVb9RwgER1aA",
  "note": "Other test note",
  "type": "Incident Comments",
  "object": "Note",
  "status": "public",
  "replies": [
    {
      "id": "JloA3x4joQMRn01d",
      "note": "Test reply",
      "type": "Incident Comments",
      "object": "Note",
      "status": "private",
      "replies": [],
      "parent_id": "ez09NVb9RwgER1aA",
      "created_at": "2024-05-31T07:45:00.000000Z",
      "updated_at": "2024-05-31T07:45:00.000000Z",
      "noteable_id": "PRDZ39MXDMOJoz2j",
      "noteable_type": "Incident"
    }
  ],
  "parent_id": null,
  "created_at": "2024-05-31T07:08:34.000000Z",
  "updated_at": "2024-05-31T07:08:34.000000Z",
  "noteable_id": "PRDZ39MXDMOJoz2j",
  "noteable_type": "Incident"
}
Table of Contents