Search class-B integration activity across members (operator)
ic_admin_agent_audit_searchCross-member audit search over class-B integration activity (DESIGN §11). Walks the matching clients → their bearer tokens → those tokens' outbox threads → each thread's actions, newest-first. Surfaces actions reachable from a client's OWN outbox (the integration's blast radius); counterparty-side actions are out of v1 scope (no reverse index yet). Operator-only (admin:agent_clients + live operator re-check). Args: { client_id?: string, operator_human?: string, member_id?: string, kind?: 'policy_eval'|'member_tap'|'system'|'counterparty', since?: ISO datetime, limit?: number (default 200), offset?: number (default 0) }. Returns: { ok, hits, total, has_more } — total counts every filtered hit; page past the cap with offset. Required scope: admin:agent_clients.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | Restrict to one action kind. | |
| limit | No | Cap on returned actions, newest-first (default 200). | |
| since | No | ISO datetime lower bound — only actions at/after this. | |
| offset | No | Pagination offset into the filtered newest-first list (default 0). | |
| client_id | No | Restrict to one client's actions. | |
| member_id | No | Restrict to actions whose thread is addressed TO this recipient. | |
| operator_human | No | Restrict to one operator-of-record's clients. |