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 Name | Description | Value Type |
---|---|---|
id | The unique identifier for the note. | integer |
note | The content of the note. | string |
has_file | Indicates whether the note includes an attached file (true or false). | boolean |
file | An object containing details about the attached file (if any). | Object |
file.name | The name of the attached file. | string |
file.url | The URL for accessing the attached file. | string |
user_id | The ID of the user who added the note. | integer |
install_id | The ID of the associated install. | integer |
deal_id | The ID of the associated deal. | integer |
milestone_id | The ID of the related milestone, if applicable. | integer |
is_complete | Indicates if the note marks the completion of the associated milestone (true or false). | boolean |
timestamps | An 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"
}
}
Updated 16 days ago