Skip to main content
node
const fetch = require('node-fetch');

let url = 'https://api.coralogix.com/mgmt/openapi/integrations/webhooks/v1/%7Bid%7D';

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));
{
  "webhook": {
    "createdAt": "2024-10-20T00:00:00.000Z",
    "externalId": "external_id_example",
    "genericWebhook": {
      "headers": [
        {
          "key": "<string>",
          "value": "<string>"
        }
      ],
      "method": "UNKNOWN",
      "payload": {
        "key": "value"
      },
      "uuid": "d838cd7b-087b-40c6-bc33-80997020f5d0"
    },
    "id": "webhook_id",
    "name": "my_webhook",
    "type": "UNKNOWN",
    "updatedAt": "2024-10-20T00:00:00.000Z",
    "url": "slack.webhook.com"
  }
}

Authorizations

Authorization
string
header
required

API key authentication

Path Parameters

id
string
required

Response

webhook
object
required
  • Outgoing webhook
  • Outgoing webhook
  • Outgoing webhook
  • Outgoing webhook
  • Outgoing webhook
  • Outgoing webhook
  • Outgoing webhook
  • Outgoing webhook
  • Outgoing webhook
  • Outgoing webhook
  • Outgoing webhook
  • Outgoing webhook
I