list_hook_requests
List requests captured by a hook (id, method, path, content_type, body_size, received_at per request; bodies stay on get_hook_request). Set wait to long-poll for new requests; use since as a cursor.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| wait | No | Long-poll up to this many seconds (max 60) for a matching request instead of returning an empty list immediately. | |
| 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 requests received after this RFC 3339 timestamp. Use the received_at of the last request you saw as a cursor. | |
| hook_id | Yes | Hook id (uuid). |