Workspaces API
List and manage Delegate workspaces via the REST API.
#List workspaces
GET /api/workspacesReturns all workspaces the authenticated user belongs to.
Response
[
{
"id": "ws_1a2b3c",
"name": "Acme Corp",
"slug": "acme-corp",
"plan": "pro",
"memberCount": 12,
"createdAt": "2026-01-15T10:00:00Z"
}
]#Get workspace
GET /api/workspaces/:idReturns a single workspace by ID.
#Update workspace
PATCH /api/workspaces/:id| Field | Type | Required | Description |
|---|---|---|---|
| name | string | No | Workspace display name |
| timezone | string | No | IANA timezone string |
#Members
GET /api/workspaces/:id/membersReturns all members of the workspace with their roles.
Delegate DocsWas this helpful? Give feedback →