Authorizations
API key authentication
Query Parameters
Filter configuration for incident events
Response
A response containing available filter values for incident events
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/incidents/incidents/v1/events/filter-values?filter=SOME_OBJECT_VALUE';
let options = {method: 'GET', headers: {Authorization: 'Bearer <API_KEY>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error('error:' + err));{
"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"
}
]
}
}No description available
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/incidents/incidents/v1/events/filter-values?filter=SOME_OBJECT_VALUE';
let options = {method: 'GET', headers: {Authorization: 'Bearer <API_KEY>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error('error:' + err));{
"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"
}
]
}
}API key authentication
Filter configuration for incident events
Show child attributes
A response containing available filter values for incident events
Show child attributes
Was this page helpful?