wait_for_hook_request
Block until a matching HTTP request is captured by the hook (or timeout_seconds elapses), then return its full detail. The one-call answer to 'trigger the flow under test, then assert its webhook fired'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| match | No | Filter: `method:POST` (exact verb), `path:term` or `body:term` (substring); a bare term matches the body. Body matching scans the first 32 KiB; detail responses remain complete. | |
| since | No | Only consider requests received after this RFC 3339 timestamp. Omit to accept a request that already arrived. | |
| hook_id | Yes | Hook id (uuid) to watch. | |
| timeout_seconds | No | Give up after this many seconds (default 45, max 60). |