LA

Webhook Console

BizScout → Legacy.ai · inbound webhook simulator & HMAC signer

Not sent yet
This simulates BizScout calling Legacy.ai's webhook endpoints — the reverse direction from the Listing API console. Paths below follow the OpenAPI spec (/api/bizscout/...); the earlier PDF used /bizscout/webhook/... and listed status-change as PATCH instead of POST — worth confirming which is current with the backend team.

Build Request

POST /api/bizscout/inquiry
event: buyer_inquiry.created

HMAC Signing

1
Timestamp
waiting for send…
2
Signed message = timestamp . raw_body
3
HMAC_SHA256( secret, message )
4
X-BizScout-Signature header

Request Sent

Nothing sent yet. Configure the request on the left and hit Send.

Response

Response will appear here once a request is sent.

Complete flow — from click to signature verification

01
Pick webhook & edit payload
Choose inquiry, status-change, or set-key; sample JSON loads automatically.
02
Build message
timestamp + "." + raw_body, exactly as it will be sent.
03
Sign with HMAC-SHA256
Keyed with the webhook secret, output as a hex digest.
04
Send & verify
Header is attached and Legacy.ai recomputes it on receipt.