Authorizations
API key authentication
Response
Response containing available filter values for incidents
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/incidents/incidents/v1/filter-values';
let options = {method: 'POST', 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": [
{
"key": "<string>",
"value": {
"valuesWithCount": [
{
"contextualLabelValue": "contextual_label_value",
"count": 10
}
]
}
}
],
"displayLabels": [
{
"key": "<string>",
"value": {
"valuesWithCount": [
{
"count": 10,
"displayLabelValue": "display_label_value"
}
]
}
}
],
"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/filter-values';
let options = {method: 'POST', 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": [
{
"key": "<string>",
"value": {
"valuesWithCount": [
{
"contextualLabelValue": "contextual_label_value",
"count": 10
}
]
}
}
],
"displayLabels": [
{
"key": "<string>",
"value": {
"valuesWithCount": [
{
"count": 10,
"displayLabelValue": "display_label_value"
}
]
}
}
],
"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
Response containing available filter values for incidents
Show child attributes
Was this page helpful?