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

Update Workspace

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

Purpose
Update workspace metadata, settings, or feature flags. Used by admins to reconfigure a team space or enable exam tools for a course.

Auth / Scope
User must have workspace:update permission in the workspace (typically admin or owner role).

Headers
Content-Type: application/json
Authorization: Bearer <USER_JWT>
Idempotency-Key: (recommended)
Idempotency & retries
Same key → returns same result or 409 if concurrent modification.

Rate limits
10 updates/minute per workspace.

Request

Path Params

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'http://localhost:3000/api/workspaces/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "CS101: AI Fundamentals (Updated)",
    "description": "Updated syllabus for Fall 2025",
    "settings": {
        "examGenerationEnabled": true,
        "beginnerModeDefault": false
    },
    "featureFlags": {
        "aiAttendee": true
    },
    "allowedDomains": [
        "university.edu",
        "guests.university.edu"
    ]
}'
Response Response Example
{
    "message": "Workspace updated successfully",
    "data": {
        "workspaceId": "w-7d8e9f0a-...",
        "name": "CS101: AI Fundamentals (Updated)",
        "settings": { ...
        },
        "updatedAt": "2025-10-22T16:30:00Z"
    }
}
Modified at 2025-10-22 21:43:01
Previous
Get Workspace
Next
Delete Workspace
Built with