Skip to main content
List workspaces available to current user
curl --request GET \
  --url https://api.acornops.dev/api/v1/workspaces \
  --cookie acornops_cp_session=
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "role": "<string>",
      "permissions": {},
      "currentUserRoleTemplate": {
        "key": "<string>",
        "displayName": "<string>",
        "capabilities": [
          "<string>"
        ],
        "protected": true,
        "sortOrder": 123,
        "description": "<string>"
      },
      "memberCount": 123,
      "clusterCount": 123,
      "virtualMachineCount": 123,
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "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

Query Parameters

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

Response

Workspace page payload: { items, nextCursor? }. Workspace items include plan.{key,name} and quota.{members,kubernetesClusters,virtualMachines}.{used,limit}; operational quota usage is redacted to 0 when permissions.read_workspace_data is false, and member usage requires permissions.read_members.

items
object[]
required
nextCursor
string