Skip to main content
node
const fetch = require('node-fetch');

let url = 'https://api.coralogix.com/mgmt/openapi/dataplans/data-usage/v2/export-status';

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));
{
  "enabled": true
}

Authorizations

Authorization
string
header
required

API key authentication

Response

This data structure is used to return data usage metrics export status.

enabled
boolean
Example:

true

I