Cases
Get Related Events
Searches for all related events associated with the given case ID and returns the matching events, if any. If the case does not exist, this method will respond with a 200 status and an empty list.
get/connect/case/events/{id}
Path parameters
idstring required
The case ID to use for searching all related events
Response
The array of related events, or an empty array if no matching events found
Example response
[
{
"caseId": "PdFc-JIBLkNJ8-bDfz47",
"createTime": "2024-11-14T15:03:22Z",
"fields": {
"client.ip": "1.2.3.4",
"client.port": "1099"
},
"id": "PdFc-JIBLkNJ8-bDfz47",
"kind": "case",
"operation": "create",
"updateTime": "2024-11-14T15:33:02Z",
"userId": "socl_my_new_client"
}
]