Authorizations
API key authentication
Query Parameters
Example:
405
Response
This data structure represents the response to delete company IP access settings.
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/aaa/team-sec-ip-access/v1?id=405';
let options = {method: 'DELETE', headers: {Authorization: 'Bearer <API_KEY>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error('error:' + err));{}No description available
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/aaa/team-sec-ip-access/v1?id=405';
let options = {method: 'DELETE', headers: {Authorization: 'Bearer <API_KEY>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error('error:' + err));{}API key authentication
405
This data structure represents the response to delete company IP access settings.
Was this page helpful?