Skip to main content
GET
/
v1
/
agents
/
{agentId}
/
access
List access bindings for an agent
curl --request GET \
  --url https://{host}/v2/workspaces/slug:agent-factory/webhooks/v1/agents/{agentId}/access \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "agent_id": "<string>",
      "principal_type": "user",
      "principal_id": "<string>",
      "email": "<string>",
      "orgSlug": "<string>",
      "granted_by": "<string>",
      "role_slug": "<string>"
    }
  ],
  "total": 123,
  "page": 123,
  "limit": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.prisme.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

User session JWT or instance API key (iak_*). Send as Authorization: Bearer <token>.

Path Parameters

agentId
string
required
Maximum string length: 64

Query Parameters

limit
string

Page size (default 100).

page
string

1-indexed page number.

Response

List of bindings.

items
object[]
total
integer
page
integer
limit
integer