Skip to main content
Update an outgoing webhook
curl --request PUT \
  --url https://api.coralogix.com/mgmt/openapi/4/integrations/webhooks/v1 \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": {
    "name": "my_webhook",
    "slack": {
      "attachments": [
        {
          "isActive": true,
          "type": "EMPTY"
        }
      ],
      "digests": [
        {
          "isActive": true,
          "type": "UNKNOWN"
        }
      ]
    },
    "type": "UNKNOWN",
    "url": "slack.webhook.com"
  },
  "id": "example_id"
}
'
{}

Authorizations

Authorization
string
header
required

API key authentication

Body

application/json
data
Outgoing webhook input data · object
id
string
Example:

"example_id"

Response

The response is of type Update outgoing webhook response · object.