Skip to main content

Delete Webhook

Endpoint: DELETE /api/metadata/webhook/{id}

Deletes a webhook by its ID.

Path parameters

ParamaeterDescriptionTypeRequired
idThe unique identifier of the webhook to delete.stringRequired.

Response

Returns 200 OK, indicating that the webhook has been deleted successfully.

Returns 404 if an invalid webhook ID is provided.

Examples

Delete a webhook

Request

curl -X 'DELETE' \
'https://<YOUR-SERVER-URL>/api/metadata/webhook/8dbbddbf-e22b-4635-9fcb-c9e03965ac2e' \
-H 'accept: */*' \
-H 'X-Authorization: <TOKEN>'

Response

Returns 200 OK, indicating that the webhook has been deleted successfully.