Authorizations
API key authentication
Response
A response containing the downloaded alert data
Base64-encoded binary data of the alert definitions
Example:
"SGVsbG8gV29ybGQ="
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/v3/alerts/download';
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));
{
"content": "SGVsbG8gV29ybGQ="
}
Download a list of all accessible alert definitions in base64-encoded byte format.
Requires the following permissions:
alerts:ReadConfig
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/v3/alerts/download';
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));
{
"content": "SGVsbG8gV29ybGQ="
}
API key authentication
A response containing the downloaded alert data
Base64-encoded binary data of the alert definitions
"SGVsbG8gV29ybGQ="
Was this page helpful?