FileForms
Webhook endpoints

Send Test Event

POST
/webhook-endpoints/{id}/test

Send a test event to a webhook endpoint. The endpoint must be subscribed to the requested event type.

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 POST "https://example.com/webhook-endpoints/string/test" \  -H "Content-Type: application/json" \  -d '{    "eventType": "document.uploaded"  }'
{  "delivered": true,  "eventId": "string"}