Authorizations
API key authentication
Body
application/json
Response
- Test integration result
- Test integration result
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/integrations/contextual-data/v1/test';
let options = {
method: 'POST',
headers: {Authorization: 'Bearer <API_KEY>', 'content-type': 'application/json'},
body: '{"integrationData":{"integrationKey":"string","integrationParameters":{"parameters":[{"key":"string","stringValue":"string"}]},"version":"string"},"integrationId":"string"}'
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error('error:' + err));
{
"result": {
"success": {}
}
}
No description available
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/integrations/contextual-data/v1/test';
let options = {
method: 'POST',
headers: {Authorization: 'Bearer <API_KEY>', 'content-type': 'application/json'},
body: '{"integrationData":{"integrationKey":"string","integrationParameters":{"parameters":[{"key":"string","stringValue":"string"}]},"version":"string"},"integrationId":"string"}'
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error('error:' + err));
{
"result": {
"success": {}
}
}
API key authentication
Show child attributes
Was this page helpful?