Skip to main content
Get available incident event filter values
curl --request GET \
  --url https://api.coralogix.com/mgmt/openapi/latest/incidents/incidents/v1/events/filter-values \
  --header 'Authorization: <api-key>'
{
  "filtersValues": {
    "assigneeWithCount": [
      {
        "assignee": "assignee",
        "count": 10
      }
    ],
    "contextualLabels": {},
    "displayLabels": {},
    "metaLabelsOp": "FILTER_OPERATOR_OR_OR_UNSPECIFIED",
    "metaLabelsWithCount": [
      {
        "count": 10,
        "metaLabel": {
          "key": "key",
          "value": "value"
        }
      }
    ],
    "severityWithCount": [
      {
        "count": 10,
        "severity": "INCIDENT_SEVERITY_UNSPECIFIED"
      }
    ],
    "stateWithCount": [
      {
        "count": 10,
        "state": "INCIDENT_STATE_UNSPECIFIED"
      }
    ],
    "statusWithCount": [
      {
        "count": 10,
        "status": "INCIDENT_STATUS_UNSPECIFIED"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key authentication

Query Parameters

filter
object

Filter configuration for incident events

Response

A response containing available filter values for incident events

filtersValues
object