contactCreated
When a Contact is created, the contactCreatedevent is triggered, and a subsequent ContactAssignment is created and accepted for the creating user or OU. Users may create Contacts owned by their Role, or an Organizational Unit to which they have access. The event payload will include where the Contact was created.
PAYLOAD FIELDS
| Field | Type | Required | Description |
|---|---|---|---|
contactAssignment | ContactAssignment | Yes | |
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
NOTE: contact.externalUserId may be null if the Contact is created from the Brytecore CRM user interface. However, if the Contact is created from an external system via Brytelytics, such as your website, the externalUserId will exist.
EXAMPLE PAYLOAD
1{2 "contactAssignment": {3 "id": "8a7fa643-da2c-4a9c-a6dc-118f16e4552d",4 "contact": {5 "id": "589f111c-47de-491c-bdba-456b30f26a4f",6 "externalUserId": null,7 "displayName": "James Abernathy",8 "givenName": "James",9 "familyName": "Abernathy",10 "addresses": [{11 "id": "be12d80a-b571-4ba3-a066-d254b2da0272",12 "label": "main",13 "street1": "110 W Main Street",14 "street2": null,15 "city": "Altanta",16 "stateProvince": "GA",17 "postalCode": "30334",18 "country": "US",19 "latLong": null,20 "__typename": "Address"21 }],22 "telephones": [{23 "id": "ceab1ca2-b20a-41e9-891d-5d7eb42c43da",24 "label": "mobile",25 "number": "6785557933",26 "rawNumber": "(678) 5557933",27 "primary": true,28 "__typename": "Telephone"29 }],30 "emails": [{31 "id": "02358021-f20d-4700-9564-65daa1bfb267",32 "label": "email",33 "address": "jamesnabby8227@gmail.com",34 "primary": true,35 "__typename": "Email"36 }],37 "primaryEmail": {38 "id": "02358021-f20d-4700-9564-65daa1bfb267",39 "label": "email",40 "address": "jamesnabby8227@gmail.com",41 "__typename": "Email"42 },43 "primaryTelephone": {44 "id": "ceab1ca2-b20a-41e9-891d-5d7eb42c43da",45 "label": "mobile",46 "number": "6785557933",47 "rawNumber": "(678) 5557933",48 "__typeName": "Telephone"49 },50 "__typename": "Person"51 },52 "assignee": {53 "id": "777f1b35-9de1-40f9-a97f-47a67d54fd78",54 "externalId": "0012F00002h5G8VQAU0012F00002h5G8VQAU",55 "name": "agent",56 "displayName": "Real Estate Agent",57 "profile": {58 "id": "074100f4-69a2-4575-b9ff-0b58b47bf606",59 "displayName": "Suzie Johannson",60 "firstName": "Suzie",61 "lastName": "Johannson",62 "photoUrl":"https://www.wherephotolives.com/image/1.jpg",63 "title":"",64 "telephones": [{65 "id": "3234877a-7c6c-4a9c-9309-af3e02a5ad2c",66 "label": "mobile",67 "number": "4045553262",68 "rawNumber": "(404) 555-3262",69 "primary": true,70 "__typename": "Telephone"71 }],72 "emails": [{73 "id": "53894d9f-53c9-422e-b4a7-62d9c061cd49",74 "label": "work",75 "address": "suzie@bryteestates.com",76 "primary": true,77 "__typename": "Email"78 }],79 "primaryOffice":{80 "id":"8acad69c-1d54-4aef-a0e6-dbb2a22bd45d",81 "name": "Corporate",82 "displayName": "Corporate",83 "address":{84 "id": "fdfd006d-eee3-46a0-bfce-73a720f0c481",85 "label": "main",86 "street1": "333 1st Street",87 "street2": null,88 "city": "Altanta",89 "stateProvince": "GA",90 "postalCode": "30334",91 "country": "US",92 "latLong": null,93 "__typename": "Address"94 },95 "__typename": "Office"96 },97 "primaryCompany":{98 "id":"269afd16-77e7-4b1e-9330-2e84626459a0",99 "name": "Brytecore",100 "displayName": "Brytecore",101 "__typename": "Company"102 },103 "primaryEmail": {104 "id": "53894d9f-53c9-422e-b4a7-62d9c061cd49",105 "label": "work",106 "address": "suzie@bryteestates.com",107 "__typename": "Email"108 },109 "primaryTelephone": {110 "id": "3234877a-7c6c-4a9c-9309-af3e02a5ad2c",111 "label": "mobile",112 "number": "4045553262",113 "rawNumber": "(404) 555-3262",114 "__typeName": "Telephone"115 },116 "__typename": "Profile"117 },118 "__typename": "Agent"119 },120 "__typename": "ContactAssignment"121 },122 "eventTimeStamp": "2025-03-05T13:02:02.542791Z",123 "eventName": "contactCreated",124 "webhookUrl": "https://yourwebsite.com/brytecore/webhook",125 "messageId": "0869c391-c25d-44f1-8fbc-467a6f063b49"126}
Updated July 23, 2026