Modifying Configurations

Webhook configurations can be enabled, disabled and deleted.

Enabling and disabling is done by performing an HTTP PATCH call to <server.url>/api/rest/v1/webhooks/[uuid]. This currently only accepts changes to the status parameter. Example:

PATCH /api/rest/v1/webhooks/44c085b7-dc60-42f7-98fe-ee776aaf5b24
{
    "status": "disabled"
}
PATCH /api/rest/v1/webhooks/44c085b7-dc60-42f7-98fe-ee776aaf5b24
{
    "status": "enabled"
}

To delete a webhook, perform an HTTP DELETE call to <server.url>/api/rest/v1/webhooks/[uuid]. Example:

DELETE /api/rest/v1/webhooks/44c085b7-dc60-42f7-98fe-ee776aaf5b24



  © 2025 Taurus SA. All rights reserved.