Event
Update an event
PATCH /event/{id}
PATCH /event/{id}
Patch metadata on an event — usually status, outcome, or hookOutcome. The body contains the partial object to merge.
Path parameters
idintegerpathrequiredNo description.
Request body
Responses
200 — Updated
Response Example
{
"success": true,
"event": {
"id": 1,
"status": "open",
"user": {
"id": 1,
"firstName": "string",
"lastName": "string",
"email": "string",
"phone": "string"
},
"createdAt": "2026-01-01T12:00:00Z",
"activity": "string",
"details": [
{
"label": "string",
"value": "string",
"type": "string",
"url": "string"
}
],
"tabs": [
{
"key": "string",
"label": "string"
}
],
"eventTraces": [
null
]
}
}404 — Event not found