Contact Note Deleted Webhook Examples

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

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

Contact note deleted example

{
  "id": "evt_3234567890abcdef12345678",
  "type": "contact.note.deleted",
  "apiVersion": "v2",
  "createTime": "2024-01-03T12: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

  • This event is emitted only when a note is independently deleted.
  • Deleting a contact and its notes as part of the same operation does not emit contact.note.deleted.
  • username and phoneNumber can be null.