The unique identifier of the connector
The unique identifier of the owner
A unique key to ensure idempotency of the webhook request
Event Body
The event type : genericContact::created
, genericContact::updated
or
genericContact::deleted
object
enum<string>
default:"resource"
required
Available options: resource
model
enum<string>
default:"genericContact"
required
The model identifier
First name. Required string length: 1 - 250
Last name. Required string length: 1 - 250
Email. Required string length: 5 - 250
Phone number. Required string length: 5 - 20
Company name. Required string length: 1 - 2
The last update timestamp
Expected Response
{
"event": "genericContact::created",
"data": {
"object": "resource",
"model": "genericContact",
"id": "<string>",
"fields": {
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>",
"phone": "<string>",
"companyName": "<string>"
},
"createdAt": "2025-03-06T09:05:04.588Z",
"updatedAt": "2025-03-06T09:15:04.588Z",
"rawResource": null,
"warnings": []
}
}