Cases
Get Case Comments
Searches for all comments assigned to the given case ID and returns the matching comments, if any. If the case does not exist, this method will respond with a 200 status and an empty list.
get/connect/case/comments/{id}
Path parameters
idstring required
The case ID to use for searching all related comments
Response
The array of case comments, or an empty array if no matching comments found
Example response
[
{
"caseId": "PdFc-JIBLkNJ8-bDfz47",
"createTime": "2024-11-14T15:03:22Z",
"description": "Discovered another anomaly around the same time involving missing logs on server xyz.",
"hours": 2.5,
"id": "PdFc-JIBLkNJ8-bDfz47",
"kind": "case",
"operation": "create",
"updateTime": "2024-11-14T15:33:02Z",
"userId": "socl_my_new_client"
}
]