Skip to main content
Update case fields
curl --request PATCH \
  --url https://api.coralogix.com/mgmt/openapi/latest/cases/cases/v1/{id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "Investigate intermittent connection drops",
  "title": "Database connection investigation"
}
'
{
  "case": {
    "category": "CASE_CATEGORY_UNSPECIFIED",
    "createTime": "2025-09-22T10:30:00.000Z",
    "id": "3f166e9f-3c88-4af2-b52e-138f339dab3e",
    "priority": "CASE_PRIORITY_UNSPECIFIED",
    "state": "CASE_STATE_UNSPECIFIED",
    "status": "CASE_STATUS_UNSPECIFIED",
    "title": "Database outage investigation",
    "acknowledgeTime": "2023-11-07T05:31:56Z",
    "alertIndicators": [
      {
        "alertId": "f56645c5-9cd4-4b9f-961f-4f852d8835a0",
        "alertVersionId": "1eae3615-79e7-4b54-88e0-6a77def653bf",
        "groupingType": "GROUPING_TYPE_UNSPECIFIED",
        "groupings": [
          {
            "key": "service",
            "value": "payments"
          }
        ],
        "priority": "ALERT_PRIORITY_UNSPECIFIED",
        "state": "ALERT_INDICATOR_STATE_UNSPECIFIED",
        "triggerTime": "2025-09-22T10:30:00.000Z",
        "resolveTime": "2025-09-22T11:05:00.000Z"
      }
    ],
    "assignee": {
      "userId": "3af152ee-9eaf-4803-87f1-23c5fb2fbaa0"
    },
    "description": "Investigating DB connection errors in prod",
    "groupings": [
      {
        "key": "service",
        "value": "payments"
      }
    ],
    "labels": [
      {
        "key": "service",
        "value": "payments"
      }
    ],
    "priorityDetails": {
      "override": "CASE_PRIORITY_UNSPECIFIED",
      "system": "CASE_PRIORITY_UNSPECIFIED"
    },
    "readableId": "CASE-123",
    "resolutionDetails": {
      "resolveTime": "2025-09-22T11:15:00.000Z",
      "resolvedBy": "CASE_RESOLVER_UNSPECIFIED"
    },
    "updateTime": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key authentication

Path Parameters

id
string
required

ID of the case to update

Example:

"3f166e9f-3c88-4af2-b52e-138f339dab3e"

Body

application/json

Partial set of fields to update on the case

description
string

New case description

Example:

"Investigate intermittent connection drops"

title
string

New case title

Example:

"Database connection investigation"

Response

Response containing the updated case

case
Case · object
required

Represents a case within the Cases service.