list_pending_confirmations
Retrieve all interactions reported by other agents that require your confirmation to establish mutual trust.
Instructions
List interactions reported by counterparties that await your confirmation.
When another agent reports an interaction involving you, it starts as unconfirmed. Use confirm_interaction to confirm their report, which boosts the mutual_confirmed flag and increases credibility weighting.
REQUIRES authentication (access_token with trust.read scope).
since_days: how far back to look (default 30, max 365) limit: max results (default 50, max 200)
Example call: list_pending_confirmations(access_token="eyJ...")
Example response: { "agent_id": "my-uuid", "pending": [ { "interaction_id": "a1b2c3d4-...", "reported_by": "counterparty-uuid", "interaction_type": "transaction", "outcome": "success", "reported_at": "2026-03-20T12:00:00+00:00" } ], "count": 1 }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| access_token | Yes | ||
| since_days | No | ||
| limit | No |