Webhooks

Patch a Webhook by ID

This API endpoint modifies an existing Webhook. One or multiple parameters in the body can be used to update the Webhook. Example - updating the endpoint URL for a existing Webhook. To only change name and endpoint parameters, select Payload in dropdown. To change Auth mechanism, select "Authentication Update" in the dropdown and select authentication type.

patch/network-services/v1/webhooks/{id}

Path parameters

idstring uuid required

Unique identifier for the webhook. This can be obtained from the List Webhooks API.

Request body

inputWebhookPatchPayload required— unresolved $ref

Response

Patches the webhook

Example response

{
  "items": {
    "name": "webhooktest2",
    "id": "a1234567-89b9-01",
    "type": "network-services",
    "generation": 4,
    "createdAt": "2025-10-10T07:20:28Z",
    "updatedAt": "2025-10-14T15:00:25Z",
    "success": true,
    "message": "Webhook patched successfully!"
  }
}

Changes