Event Headers
string
required
The unique identifier of the connector
string
required
The unique identifier of the owner
string
required
A unique key to ensure idempotency of the webhook request
Event Body
enum<string>
required
The event type :
widgetCardView::created, widgetCardView::updated or
widgetCardView::deletedCard Resource
required
Show properties
Show properties
enum<string>
default:"resource"
required
Available options: resource
enum<string>
default:"widgetCardView"
required
The model identifier
string
required
The unique identifier
object
required
string
required
The creation timestamp
string
required
The last update timestamp
any | null
The raw resource data
Expected Response
This webhook expects a synchronous response with a JSON body as defined below
card[]
required
Array of cards to display in the widget
Show items
Show items
string
required
Title of the card
content[]
required
Array of content items to display in the card
Show items
Show items
object
action[]
string
object
{
"event": "widgetCardView::created",
"data": {
"object": "resource",
"model": "widgetCardView",
"id": "<string>",
"fields": {
"triggeredBy": {
"object": "resourceRef",
"model": "<string>",
"id": "<string>"
},
"genericContact": {
"object": "resourceRef",
"model": "<string>",
"id": "<string>"
},
"genericCompany": {
"object": "resourceRef",
"model": "<string>",
"id": "<string>"
},
"crmOpportunity": {
"object": "resourceRef",
"model": "<string>",
"id": "<string>"
}
},
"createdAt": "2025-03-06T09:05:04.611Z",
"updatedAt": "2025-03-06T09:15:04.611Z",
"rawResource": null,
"warnings": []
}
}
{
"cards": [
{
"title": "<string>",
"contents": [
{
"type": "text",
"label": "<string>",
"value": "<string>",
"link": "<string>"
},
{
"type": "status",
"label": "<string>",
"value": "<string>",
"status": "<enum: default | success | warning | danger | info>"
}
],
"actions": [
{
"type": "<enum: openUrl | openUrlInIframe>",
"label": "<string>",
"url": "<string>"
}
],
"link": "<string>"
}
],
"root": {
"actions": [
{
"type": "<enum: openUrl | openUrlInIframe>",
"label": "<string>",
"url": "<string>"
}
]
}
}