{
  "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": []
  }
}
// 200

Event Headers

x-conector-id
string
required

The unique identifier of the connector

x-owner-id
string
required

The unique identifier of the owner

x-idempotency-key
string
required

A unique key to ensure idempotency of the webhook request

Event Body

event
enum<string>
required

The event type : genericContact::created, genericContact::updated or genericContact::deleted

data
Contact Resource
required

Expected Response

200 OK
{
  "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": []
  }
}
// 200