Authorizations
API key authentication
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/integrations/webhooks/v1/summary';
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));
{
"outboundWebhookSummaries": [
{
"createdAt": "2023-11-07T05:31:56Z",
"externalId": 123,
"id": "<string>",
"name": "<string>",
"type": "UNKNOWN",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
No description available
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/integrations/webhooks/v1/summary';
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));
{
"outboundWebhookSummaries": [
{
"createdAt": "2023-11-07T05:31:56Z",
"externalId": 123,
"id": "<string>",
"name": "<string>",
"type": "UNKNOWN",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
API key authentication
Show child attributes
Was this page helpful?