Authorizations
API key authentication
Path Parameters
Example:
1
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/v1/custom_enrichment/1';
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));
{
"customEnrichmentId": 1,
"message": "Custom enrichment deleted successfully"
}
No description available
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/v1/custom_enrichment/1';
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));
{
"customEnrichmentId": 1,
"message": "Custom enrichment deleted successfully"
}
API key authentication
1
Was this page helpful?