FileForms
Webhook endpoints

Update Webhook Endpoint

PATCH
/webhook-endpoints/{id}

Update a webhook endpoint. All fields are optional; only the provided fields are updated.

Authorization

ApiKeyAuth
x-api-key<token>

In: header

Path Parameters

id*string

Webhook endpoint ID (we_...)

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X PATCH "https://example.com/webhook-endpoints/string" \  -H "Content-Type: application/json" \  -d '{}'
{  "id": "string",  "url": "string",  "eventTypes": [    "document.uploaded"  ],  "createdAt": "2019-08-24T14:15:22Z"}