Contact Note Created Webhook Examples

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

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

Contact note created example

{
  "id": "evt_1234567890abcdef12345678",
  "type": "contact.note.created",
  "apiVersion": "v2",
  "createTime": "2024-01-01T12:00:00.000Z",
  "contactNote": {
    "id": "6a3de646e18f344f743aaa4d",
    "contactId": "1824266594102064128",
    "username": "alice_01",
    "phoneNumber": "+16315551111",
    "content": "Customer prefers follow-up in the morning.",
    "createTime": "2024-01-01T12:00:00.000Z",
    "updateTime": "2024-01-01T12:00:00.000Z"
  }
}

Notes

  • The contactNote object identifies the note and its owning contact.
  • username and phoneNumber can be null.
  • content contains up to 500 characters.