Authorizations
API key authentication
Body
application/json
Example:
"example_id"
Response
- Test outgoing webhook response
- Test outgoing webhook response
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/integrations/webhooks/v1/test-existing';
let options = {
method: 'POST',
headers: {Authorization: 'Bearer <API_KEY>', 'content-type': 'application/json'},
body: '{"id":"example_id"}'
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error('error:' + err));
{
"success": {}
}
No description available
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/integrations/webhooks/v1/test-existing';
let options = {
method: 'POST',
headers: {Authorization: 'Bearer <API_KEY>', 'content-type': 'application/json'},
body: '{"id":"example_id"}'
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error('error:' + err));
{
"success": {}
}
API key authentication
"example_id"
Was this page helpful?