New Customer Note Example
The new_note webhook is triggered whenever a note is added to a customer. It provides details about the note, including the content, the customer it is associated with, the user who created it, and relevant timestamps.
Value Name | Description | Value Type |
---|---|---|
id | The unique identifier for the note. | integer |
note | The content of the note. | string |
parent_resource | An object containing details about the parent resource associated with the note | Object |
parent_resource.id | The customer ID associated with the note. | integer |
parent_resource.name | The type of note is always 'Customer'. | string |
note | The content of the note. | string |
user_id | The ID of the user who created the note. | integer |
timestamps | An object containing creation and update timestamps. | Object |
{
"webhook_event": "new_note",
"id": 1579985,
"parent_resource": {
"id": 2697241,
"name": "Customer"
},
"note": "new customer note",
"user_id": 40773,
"timestamps": {
"created_at": "2025-01-14 19:05:27",
"updated_at": "2025-01-14 19:05:27",
"timezone": "UTC"
}
}
Updated 16 days ago