Contact Note Updated Webhook Examples

Example payload for the contact.note.updated webhook event.

Use this payload to handle a webhook sent when a contact note is updated.

Contact note updated example

{
  "id": "evt_2234567890abcdef12345678",
  "type": "contact.note.updated",
  "apiVersion": "v2",
  "createTime": "2024-01-02T12:00:00.000Z",
  "contactNote": {
    "id": "6a3de646e18f344f743aaa4d",
    "contactId": "1824266594102064128",
    "username": "alice_01",
    "phoneNumber": "+16315551111",
    "content": "Customer now prefers afternoon follow-up.",
    "createTime": "2024-01-01T12:00:00.000Z",
    "updateTime": "2024-01-02T12:00:00.000Z"
  }
}

Notes

  • The contactNote object identifies the updated note and its owning contact.
  • username and phoneNumber can be null.
  • updateTime shows when the note was last updated.