New Install Note Example

The new_install_note webhook is triggered when a new note is added to an install. This webhook provides details about the note, including its content, associated files, user information, related install and deal IDs, and timestamps

Value NameDescriptionValue Type
idThe unique identifier for the note.integer
noteThe content of the note.string
has_fileIndicates whether the note includes an attached file (true or false).boolean
fileAn object containing details about the attached file (if any).Object
file.nameThe name of the attached file.string
file.urlThe URL for accessing the attached file.string
user_idThe ID of the user who added the note.integer
install_idThe ID of the associated install.integer
deal_idThe ID of the associated deal.integer
milestone_idThe ID of the related milestone, if applicable.integer
is_completeIndicates if the note marks the completion of the associated milestone (true or false).boolean
timestampsAn object containing creation and update timestamps.Object
{
  "webhook_event": "new_install_note",
  "id": 2626212,
  "note": "text here",
  "has_file": true,
  "file": {
    "name": "Screenshot_1886.png",
    "url": "https://assets.enerflo.io/projects/4453459/notes/44vVm5qYQxV7YDep3aKqfj2zsF39g6PBfhAFGPvA.png"
  },
  "user_id": 40773,
  "install_id": 4453459,
  "deal_id": 2459008,
  "milestone_id": null,
  "is_complete": false,
  "timestamps": {
    "deleted_at": null,
    "created_at": "2025-01-14 18:48:54",
    "updated_at": "2025-01-14 18:48:54",
    "timezone": "UTC"
  }
}