Skip to main content

Update Workspace Settings

Update workspace settings.

Quick Navigation

Endpoint

PUT /api/v1/workspaces/{workspace_id}/settings

Headers

HeaderRequiredDescription
AuthorizationYesBearer <access_token>
Content-TypeYesapplication/json

Path Parameters

ParameterTypeRequiredDescription
workspace_idintegerYesWorkspace ID

Request Body

{
"settings": {
"allow_public_access": true,
"default_role_id": 3
}
}

Response

Success (200)

{
"success": true,
"data": {
"settings": {
"allow_public_access": true,
"default_role_id": 3
},
"message": "Workspace settings updated successfully"
},
"message": "Workspace settings updated successfully"
}

Features

  • Settings updates
  • Validation
  • Audit logging

Status

[WARNING] TODO: Not Implemented

This endpoint is defined in the router but the implementation logic is not yet complete.