Webhooks
POST
/webhooks/{id}/test

Fires a one-off signed test payload at the endpoint straight away, so you can check the URL and your signature verification before wiring up real events. Synchronous: the response reports the status your endpoint returned. It does not create a row in the delivery log.

Authorization

bearerAuth
AuthorizationBearer <token>

An API key created under Settings > API & Webhooks. Keys start with sf_live_.

In: header

Path Parameters

id*string

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/webhooks/string/test"
{  "data": {    "ok": true,    "responseStatus": 200,    "error": null  }}