const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/enrichments/limit';
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));
{
"limit": 10,
"used": 5
}
No description available
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/enrichments/limit';
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));
{
"limit": 10,
"used": 5
}
API key authentication
A successful response.
This response data structure represents the enrichments limit
Was this page helpful?