Skip to main content
List workspace members
curl --request GET \
  --url https://api.acornops.dev/api/v1/workspaces/{workspaceId}/members \
  --cookie acornops_cp_session=
{
  "items": [
    {
      "workspaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "role": "<string>",
      "email": "jsmith@example.com",
      "displayName": "<string>",
      "roleTemplate": {
        "key": "<string>",
        "displayName": "<string>",
        "capabilities": [
          "<string>"
        ],
        "protected": true,
        "sortOrder": 123,
        "description": "<string>"
      },
      "joinedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "nextCursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.acornops.dev/llms.txt

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

Authorizations

acornops_cp_session
string
cookie
required

Path Parameters

workspaceId
string<uuid>
required
Example:

"4b930d98-add9-4924-ab26-3c16d96ec373"

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 100
cursor
string
q
string
role
string

Deployment-supported workspace role key. Built-ins are owner, admin, operator, viewer, and auditor; custom roles are lowercase snake_case.

Pattern: ^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$
source
enum<string>
Available options:
oidc,
internal

Response

Workspace member page payload: { items, nextCursor? }.

items
object[]
required
nextCursor
string