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

let url = 'https://api.coralogix.com/mgmt/openapi/aaa/team-sec-ip-access/v1?id=SOME_STRING_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));
{
  "settings": {
    "enableCoralogixCustomerSupportAccess": "CORALOGIX_CUSTOMER_SUPPORT_ACCESS_UNSPECIFIED",
    "id": 405,
    "ipAccess": 405
  }
}

Authorizations

Authorization
string
header
required

API key authentication

Query Parameters

id
string

The ID of the company IP access settings to get. If it's not provided, the id will be derived from the authorization header.

Response

This data structure represents the response to get company IP access settings.

settings
object

This data structure represents the IP access settings for a company.