contactUpdated
When a User updates a Contact, the contactUpdatedevent is triggered. The event payload will include which fields were updated.
PAYLOAD FIELDS
| Field | Type | Required | Description |
|---|---|---|---|
contactAssignmentId | UUID | Yes | The unique ID of the ContactAssignment being updated. |
updatedData | UpdatedData | Yes | An object containing the data fields that were changed, and their old and new values |
eventName | string | Yes | The name of this event. |
webhookUrl | string | Yes | The URL to which this event was posted |
messageId | UUID | Yes | A unique ID for this specific webhook post. |
* indicates a required field
EXAMPLE PAYLOAD
1{2 "contactAssignmentId": "f2cac196-275f-4d70-a8e8-9789e5322bc0",3 "contactId": "ea7497ff-8e9f-4f6f-8951-e3414ebb123b",4 "externalUserId": "",5 "updatedData": {6 "old": {7 "givenName": "Fredirick",8 "familyName": "Smith",9 "telephone": {10 "id": "ceab1ca2-b20a-41e9-891d-5d7eb42c43da",11 "label": "mobile",12 "number": "6785557934",13 "rawNumber": "(678) 5557934",14 "__typeName": "Telephone"15 }16 },17 "new": {18 "givenName": "Frederick",19 "familyName": "Smith",20 "telephone": {21 "id": "ceab1ca2-b20a-41e9-891d-5d7eb42c43da",22 "label": "mobile",23 "number": "6785557933",24 "rawNumber": "(678) 5557933",25 "__typeName": "Telephone"26 }27 }28 },29 "eventTimeStamp": "2025-03-05T13:02:02.542791Z",30 "eventName": "contactUpdated",31 "webhookUrl": "https://yourwebsite.com/brytecore/webhook",32 "messageId": "44089235-be19-4ebf-ba86-bdfc154d20c0"33}
Updated July 23, 2026