GET
/
v1
/
service_slos
const fetch = require('node-fetch');

let url = 'https://api.coralogix.com/mgmt/openapi/v1/service_slos?ids=SOME_ARRAY_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));
{
  "slos": {},
  "notFoundIds": [
    "slo_id1",
    "slo_id2"
  ]
}

Authorizations

Authorization
string
header
required

API key authentication

Query Parameters

ids
string[]
required

Response

200
application/json

A successful response.

This data structure represents a response to batch get Service SLOs.