Documentation Index
Fetch the complete documentation index at: https://docs.linquid.io/llms.txt
Use this file to discover all available pages before exploring further.
Workspaces API
Workspace endpoints control tenancy, team access, and workspace-level settings.Authentication model
- Requires authenticated user context.
- Many membership/invite/API-key operations are session-only (API-key auth is explicitly blocked).
Endpoint matrix
Core workspace lifecycle
GET /workspacesPOST /workspacesGET /workspaces/:workspaceIdPATCH /workspaces/:workspaceIdDELETE /workspaces/:workspaceId
Team and roles
GET /workspaces/:workspaceId/membersPOST /workspaces/:workspaceId/members/invitePATCH /workspaces/:workspaceId/members/:memberIdDELETE /workspaces/:workspaceId/members/:memberIdPOST /workspaces/:workspaceId/transfer-ownership
Invitations
GET /workspaces/invitations/pendingPOST /workspaces/invitations/:token/acceptDELETE /workspaces/invitations/:invitationId
API keys and usage helpers
GET /workspaces/:workspaceId/api-keysPOST /workspaces/:workspaceId/api-keysPUT /workspaces/:workspaceId/api-keys/:keyIdDELETE /workspaces/:workspaceId/api-keys/:keyIdGET /workspaces/:workspaceId/usageGET /workspaces/:workspaceId/billing
Permission families
workspace:read,workspace:updatemembers:read,members:invite,members:update_roles,members:removebilling:readapi_keys:*for key lifecycle- owner-only protections on destructive actions (workspace delete, ownership transfer)
Plan/limit gates
- Maximum joined workspaces per user is enforced.
- API key creation/update/delete is feature-gated by API access entitlement.
- Invite creation is rate-limited and can return limit responses.
Operational notes
/workspaces/:workspaceId/billingis a legacy helper; full billing flows are under/billing/*.- Ownership transfer performs strict membership/role safety checks.
- Invitation acceptance verifies limits and workspace access constraints.
Typical failures
400invalid role transition / ownership transfer constraints403permission denied or plan feature unavailable404workspace/member/invitation not found409invitation/member state conflicts
/api-reference/workspaces/members-invitations-and-ownership/api-reference/workspaces/api-keys-usage-and-billing/user-guides/manual/workspace/workspaces-and-access/user-guides/manual/workspace/workspace-settings-and-governance-reference

