Authorizations
API key authentication
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/dataengine/retention-tags/v1';
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));
{
"retentions": [
{
"editable": true,
"id": "<string>",
"name": "<string>",
"order": 123
}
]
}
No description available
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/dataengine/retention-tags/v1';
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));
{
"retentions": [
{
"editable": true,
"id": "<string>",
"name": "<string>",
"order": 123
}
]
}
API key authentication
Show child attributes
Was this page helpful?