Requests access to an agent.
Creates a pending access request and notifies agent admins via email.
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The agent ID.
The tenant identifier
Query Parameters
The requested role (Viewer or Editor). Defaults to Viewer.
"UNSPECIFIED" | "VIEWER" | "EDITOR" | "ADMIN"Response Body
curl -X POST "https://api.fruxon.com/v1/tenants/string/agents/string/collaborators:requestAccess"Rejects a pending access request.
Removes the pending request. Requires Admin role on the agent.
Lists approval requests for the given agent, newest first
Each item represents one parked execution waiting on a human gate, including the prompt text shown to the approver, the tool call arguments under review, and the inbound channel (web, Telegram, Slack, …) the request was dispatched on. The default `Pending` filter is what an inbox UI wants; pass `Approved`, `Rejected`, or `Cancelled` to see history. Pair items in this list with `POST .../pendingApprovals/{approvalId}:respond` to resume them.