Skip to content
Start free in Cloud

Queue site webhook test REST API

POST
/api/sites/{id}/webhooks/{webhookID}/test
curl --request POST \
--url https://hitkeep.com/api/sites/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/webhooks/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/test \
--cookie hk_token=<hk_token>

Deliveries use the WebhookEventPayload schema with at-least-once, unordered semantics. Verify X-HitKeep-Signature (v1=) over timestamp + “.” + body with the one-time secret, reject stale X-HitKeep-Timestamp values, and deduplicate by X-HitKeep-Event-ID or X-HitKeep-Delivery-ID.

id
required
string format: uuid
webhookID
required
string format: uuid

Queued test delivery

Media typeapplication/json
object
delivery_ids
required
Array<string>
event_id
required
string format: uuid
Examplegenerated
{
"delivery_ids": [
"2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"
],
"event_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"
}