Instrumented delivery
Send webhook test
Send a signed test event and inspect destination status, timing, request, and response.
POST
/webhooks/test- Service
- Webhook Test
- Billing
- On success
01
Request
urlrequiredstringA valid HTTPS destination URL in production.
payloadobjectOptional JSON data placed under the event data field.
headersRecord<string, string>Optional custom destination headers.
curl https://api.finap.uk/api/v1/webhooks/test -X POST \
-H "Authorization: Bearer $FINAP_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/webhooks",
"payload": { "orderId": "ord_0192" }
}'02
Delivered event
FINAP wraps your payload in a standard event envelope and adds delivery metadata headers.
X-Finap-Delivery-IdstringUnique delivery identifier.
X-Finap-TimestampstringDelivery timestamp.
X-Finap-Signaturesha256=…HMAC signature emitted by FINAP.
{
"id": "delivery_id",
"type": "webhook.test",
"createdAt": "2026-07-18T09:00:00.000Z",
"data": {
"orderId": "ord_0192"
}
}