API Request Logs capture the HTTP requests your backend makes against the Agent Handler API itself - POST /registered-users, GET /tool-packs, POST /credentials/export, and so on. Different from Tool Call Logs, which capture what the agent does once it’s connected to the MCP server.
You’ll mostly use these when you’re debugging your own integration code rather than the agent’s behavior.
Per request:
POST /api/v1/registered-users, GET /api/v1/tool-packs, etc.The filter bar covers:
/registered-users/*.A common debugging shape: “all 4xx and 5xx responses on /registered-users/* in the last hour.”
Click any row to open the full detail. You see:
Authorization redacted to its prefix).“My backend is creating Registered Users that aren’t appearing in the dashboard.”
Filter to POST /api/v1/registered-users, look at the response codes. If they’re 200, check whether you’re looking at the right environment in the dashboard (test vs production). If they’re 4xx, the response body says exactly what’s wrong.
“My API calls were working an hour ago and now everything is 401.”
Someone rotated the API key. Filter by API key prefix; if the prefix you’re using doesn’t appear, the key was regenerated. Update your secret store.
“My webhook deliveries stopped.”
Filter to the webhook subscription endpoints. If recent calls show 200 responses but no events are flowing, the issue is on the receiving side, not Agent Handler’s side. The webhook delivery log has more detail on individual delivery attempts.
90 days on standard plans, longer on Enterprise. Bulk export is available for any filtered view. The logs aren’t webhook-streamed today; for SIEM forwarding, pull via export or the API listing endpoints.
Track admin actions across your organization with the Audit Trail.