Dashboard
APITest Webhook API - Send a Sample Event | BotSubscription
api.botsubscription.com
GET/v1/endpoint
AuthenticationBearer
Token
Stays in this tab. Required for this endpoint — the value below is what gets sent.
Mock
curl --request GET \
  --url https://api.botsubscription.com/v1/endpoint \
  --header 'Authorization: Bearer sk_live_•••'

Test Webhook - Send a Sample Event to Your Endpoint

Trigger a test delivery to a webhook you have already configured, so you can confirm your endpoint receives events and verifies signatures correctly before relying on it in production.

POST/v2/projects/{project_id}/integrations/webhooks/{webhook_id}/test

Authorization

Bearer TokenRequired

Requires the webhooks:test permission.

Path Parameters

project_idstringrequired

The unique identifier of the project.

webhook_idstringrequired

The unique identifier of the webhook to test.

Request Body

eventstring

Event name in domain.action format, e.g. payment-request.completed. Defaults to webhook.test when omitted.

A 201 confirms the test event was scheduled for delivery, not that your endpoint received it. Check your endpoint logs, and verify the signature the same way you would for a real event—see the signature verification guide.

Last updated: