1. Workspace
Cognita
  • Introduction
  • Auth
    • register
      POST
    • login
      POST
    • callback
      GET
    • profile
      GET
    • verify email
      POST
    • refresh
      POST
    • logout
      POST
    • forgot password
      POST
    • reset password
      POST
    • request reset password
      POST
    • update-profile
      PATCH
  • Meetings
    • Transcripts
      • Retrieve transcripts for a meeting
    • upload init
    • Get meeting details
  • Transcription
    • live
    • Get Transcript segments
    • Create translation for transcript
  • Organization
    • Billing
      • Get Billing Details
      • Update Plan
    • Org
      • Create Organization
      • Get Organization
      • Get Organizations
      • update organization
      • update settings
      • Delete Organization
      • get organization settings
      • Suspend
      • Resume
    • Retention
      • Set Retention Policy
      • Get Retention Policy
      • Update Retention Policy
    • Domains
      • Allowed Domains
      • Allowed Domains
      • Domain verfying
  • Workspaces
    • Org
      • Get Organization Workspaces
    • Workspace
      • Create Workspace
        POST
      • Get Workspace
        GET
      • Update Workspace
        PUT
      • Delete Workspace
        DELETE
    • Users
      • Get Workspace Members
      • Delete Member from Workspace
    • Meetings
      • Start a meeting in workspace
  • configurations
    • feature-flags
    • configs
    • tenant-defaults
  • Schemas
    • Organization
      • OrganizationSettings
      • FeatureFlags
      • RetentionPolicy
      • Organization
      • CreateOrgRequestBody
    • Billing & Subscriptions
      • BillingAccount
      • SubscriptionEntitlements
      • SubscriptionPlan
      • Subscription
      • PaymentMethod
      • Invoice
      • UsageRecords
      • Bill
    • Roles & permissions
      • Permissions
    • Workspace
      • Workspaces
    • Meeting & Recordings
      • Meetings
    • Trascriptions & Summaries
    • Integrations
    • Notifications & Audit logs
    • AI Services
    • Localization
    • Auth & Users
      • user
      • AccessToken
    • ErrorResponse
    • SuccessResponse
    • DeviceInfo
    • Session
  1. Workspace

Get Workspace

Developing
Develop Env
http://localhost:3000/api
Develop Env
http://localhost:3000/api
GET
http://localhost:3000/api
GET /workspaces/{workspace_id}
workspace
Maintainer:Suhaib Ghattass

Purpose
Retrieve full details of a specific workspace, including settings, members, and enabled features. Used when loading a workspace dashboard or configuring integrations.

Auth / Scope
User must be a member of the workspace (via workspace_members) or have org-level workspace:read permission.

Headers
Authorization: Bearer <USER_JWT>
Accept-Language: en-US (optional, for localized settings)
Idempotency & retries
Not applicable (safe GET).

Rate limits
100 requests/minute per user.

Request

Path Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:3000/apiGET /workspaces/'
Response Response Example
{
    "message": "Workspace retrieved successfully",
    "data": {
        "workspaceId": "w-7d8e9f0a-1b2c-3d4e-5f6g-7h8i9j0k1l2m",
        "orgId": "a1b2c3d4-5678-90ef-1234-567890abcdef",
        "name": "CS101: Introduction to AI",
        "description": "Fall 2025 lecture series",
        "visibility": "org",
        "createdBy": "u-9f8e7d6c-5b4a-3210-fedc-ba9876543210",
        "createdAt": "2025-10-22T15:45:30Z",
        "updatedAt": "2025-10-22T16:00:00Z",
        "settings": {
            "timezone": "America/Los_Angeles",
            "educationMode": true,
            "lmsIntegration": "canvas"
        },
        "allowedDomains": [
            "university.edu"
        ],
        "featureFlags": {
            "examGeneration": true,
            "aiAttendee": false
        },
        "supportedLanguages": [
            "en-US",
            "es-ES"
        ],
        "memberCount": 12,
        "meetingCount": 8,
        "subscriptionId": "sub-abc123def456"
    }
}
Modified at 2025-10-22 21:43:00
Previous
Create Workspace
Next
Update Workspace
Built with