Skip to main content
Create a case settings team configuration
curl --request POST \
  --url https://api.coralogix.com/mgmt/openapi/5/cases/cases/case-settings/v1/configs \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "globalIndicatorSettings": {
    "enabled": true,
    "filteringConditions": [
      {
        "enabled": true,
        "entityLabels": {
          "all": {}
        },
        "priorities": {
          "all": {}
        }
      }
    ]
  },
  "caseLifecycle": {
    "autoResolve": {
      "enabled": true,
      "inactivePeriod": "3600s"
    },
    "kpi": {
      "thresholds": [
        {
          "enabled": true,
          "threshold": "300s"
        }
      ]
    },
    "resolutionSnoozePeriod": "600s",
    "suppressionPeriod": "3600s"
  },
  "name": "Primary Case Settings"
}
'
{
  "caseSettings": {
    "caseLifecycle": {
      "autoResolve": {
        "enabled": true,
        "inactivePeriod": "3600s"
      },
      "kpi": {
        "thresholds": [
          {
            "enabled": true,
            "threshold": "300s"
          }
        ]
      },
      "resolutionSnoozePeriod": "600s",
      "suppressionPeriod": "3600s"
    },
    "createTime": "2025-09-22T10:30:00.000Z",
    "globalIndicatorSettings": {
      "enabled": true,
      "filteringConditions": [
        {
          "enabled": true,
          "entityLabels": {
            "all": {}
          },
          "priorities": {
            "all": {}
          }
        }
      ]
    },
    "id": "3f166e9f-3c88-4af2-b52e-138f339dab3e",
    "name": "Default Team Config",
    "updateTime": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.coralogix.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication

Body

application/json

Request to create a new case settings team configuration.

globalIndicatorSettings
Global indicator settings · object
required

Team-level indicator configuration options for case management, including case lifecycle and event filtering conditions.

caseLifecycle
Case lifecycle settings · object

Team-level configuration options for the lifecycle of case, such as suppression and snooze periods.

name
string

Optional display name for the case settings team configuration

Required string length: 1 - 4096
Pattern: ^[\s\S]*$
Example:

"Primary Case Settings"

Response

Response containing the newly created case settings team configuration.

caseSettings
Case settings team configuration · object
required

Team-level configuration entity for case management.