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 : genericUser::created
, genericUser::updated
or
genericUser::deleted
object
enum<string>
default:"resource"
required
Available options: resource
model
enum<string>
default:"genericUser"
required
The model identifier
First name. Required string length: 1 - 250
Last name. Required string length: 1 - 250
Email. Required string length: 5 - 250
The last update timestamp
Expected Response
{
"event": "genericUser::created",
"data": {
"object": "resource",
"model": "genericUser",
"id": "<string>",
"fields": {
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>"
},
"createdAt": "2025-03-06T09:05:04.590Z",
"updatedAt": "2025-03-06T09:15:04.590Z",
"rawResource": null,
"warnings": []
}
}