dispatch_list
List newest dispatch packets with optional filters for app, status, and direction. Returns paginated metadata for verified packets, separating unverified ones.
Instructions
List dispatch packets newest-first, filtered by any combination of
to_app / from_app / status ('' = no filter). Paginated: returns
{dispatches, total, unverified, unverified_total, next_cursor} — pass
the returned next_cursor as cursor to fetch the next page.
Returns packet metadata only, no assignment bodies — use dispatch_read
for one packet's brief. Read-only. dispatches only carries packets
whose meta.json HMAC signature verified (B-52, issue #241); a packet with
no signature (legacy, pre-dates signing) or a wrong one (tampered/forged)
is never mixed into it, instead appearing in unverified with
unverified: true and a signature_status of legacy_unsigned or
invalid.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| app_id | Yes | ||
| cursor | No | ||
| status | No | ||
| to_app | No | ||
| from_app | No |