Update Workspace Settings
Update workspace settings.
Quick Navigation
Endpoint
PUT /api/v1/workspaces/{workspace_id}/settings
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <access_token> |
Content-Type | Yes | application/json |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
workspace_id | integer | Yes | Workspace 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.