PATCH /v1/notifications/webhooks/{webhook_id}

Updates a webhook to replace webhook fields with new values. Supports only the replace operation. Pass a json_patch object with replace operation and path, which is /url for a URL or /event_types for events. The value is either the URL or a list of events.

Servers

Path parameters

Name Type Required Description
webhook_id String Yes

The ID of the webhook for which to list subscriptions.

Request headers

Name Type Required Description
Content-Type String Yes The media type of the request body.

Default value: "application/json"

Request body fields

Name Type Required Description
[] Array Yes
[].op String Yes

The operation.

Possible values:

  • "remove"
  • "replace"
  • "move"
  • "copy"
  • "test"
  • "add"
[].value No

The value to apply. The remove operation does not require a value.

[].path String No

The JSON Pointer to the target document location at which to complete the operation.

[].from String No

The JSON Pointer to the target document location from which to move the value. Required for the move operation.

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.