Send a synchronous test event to the webhook endpoint to verify connectivity and signature handling. The request body names the account the test event is attributed to — webhook endpoints are integrator-scoped and serve every account the integrator is granted, so there is no implicit account to test under.
Security
PartnerApiKey and PartnerOAuth
- Mock serverhttps://api-docs.lobbie.com/_mock/openapi/partner/v2/webhook/{webhookId}/test
- Productionhttps://api-prod.lobbie.com/lobbie/api/partner/v2/webhook/{webhookId}/test
curl -i -X POST \
'https://api-docs.lobbie.com/_mock/openapi/partner/v2/webhook/{webhookId}/test' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"accountId": 12345
}'Test event was attempted. Inspect the response body for the delivery outcome (success, status code, response time, human-readable message).
Human-readable summary of the delivery outcome.
Example:"Delivered successfully (HTTP 200)"
HTTP status code returned by the endpoint. Null if the request never completed.
Example:200
Response
{ "message": "Delivered successfully (HTTP 200)", "responseStatusCode": 200, "responseTimeMs": 150, "success": true, "testEventId": "evt_test_abc123" }