> ## Documentation Index
> Fetch the complete documentation index at: https://docs.memorylake.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Workspace Actors

> List actors bound to a workspace

```
GET /openapi/memorylake/api/v3/workspaces/{workspaceId}/actors
```

Returns a paginated list of actors that are bound to the specified workspace. Only bound actors can participate in conversations within the workspace's projects.

<Note>
  **Permission required:** `workspace:actor_list`
</Note>

### Path Parameters

<ParamField path="workspaceId" type="string" required>
  Workspace ID
</ParamField>

### Query Parameters

<ParamField query="page_size" type="integer" default="20">
  Number of bindings per page.
</ParamField>

<ParamField query="continuation_token" type="string">
  Token returned by the previous call. Omit on the first request.
</ParamField>

<RequestExample>
  ```bash First page theme={null}
  curl -X GET 'https://app.memorylake.ai/openapi/memorylake/api/v3/workspaces/ws-7k8m9n0p1q2r/actors?page_size=20' \
    -H 'Authorization: Bearer sk_xxxxxx'
  ```

  ```bash Next page theme={null}
  curl -X GET 'https://app.memorylake.ai/openapi/memorylake/api/v3/workspaces/ws-7k8m9n0p1q2r/actors?page_size=20&continuation_token=eyJsYXN0X2lkIjoiYWN0LWY2ZTVkNCJ9' \
    -H 'Authorization: Bearer sk_xxxxxx'
  ```
</RequestExample>

### Response

<ResponseField name="data" type="object">
  <Expandable title="Paginated workspace actor bindings">
    <ResponseField name="items" type="array">
      Array of actor binding objects

      <Expandable title="Actor binding">
        <ResponseField name="actor_id" type="string">Actor ID</ResponseField>
        <ResponseField name="custom_id" type="string">Caller-defined external identifier</ResponseField>
        <ResponseField name="actor_type" type="string">Actor type: `HUMAN` or `ASSISTANT`</ResponseField>
        <ResponseField name="display_name" type="string">Human-readable display name</ResponseField>
        <ResponseField name="bound_at" type="string">Timestamp when the actor was bound to this workspace</ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="continuation_token" type="string">Token for the next page. Absent or `null` when this is the last page.</ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json Success (200) theme={null}
  {
    "success": true,
    "data": {
      "items": [
        {
          "actor_id": "act-a1b2c3d4e5f6",
          "custom_id": "user-ext-001",
          "actor_type": "HUMAN",
          "display_name": "Alice Chen",
          "bound_at": "2025-03-15T09:00:00Z"
        },
        {
          "actor_id": "act-f6e5d4c3b2a1",
          "custom_id": "system-intake",
          "actor_type": "system",
          "display_name": "Intake Bot",
          "bound_at": "2025-03-15T09:05:00Z"
        }
      ],
      "continuation_token": null
    }
  }
  ```
</ResponseExample>
