Skip to main content
POST
/
workspace
/
{id}
curl -X POST https://app.drime.cloud/api/v1/workspace/1873 \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Renamed Workspace"
  }'
{
  "workspace": {
    "id": 1873,
    "name": "Renamed Workspace",
    "owner_id": 15843,
    "updated_at": "2025-12-20T10:00:00.000000Z"
  },
  "status": "success"
}

Documentation Index

Fetch the complete documentation index at: https://docs.drime.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Updates the name or other details of an existing workspace.

Path Parameters

id
integer
required
The workspace ID to update

Request Body

name
string
New name for the workspace

Response

workspace
object
The updated workspace object
status
string
Request status (success)
curl -X POST https://app.drime.cloud/api/v1/workspace/1873 \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Renamed Workspace"
  }'
{
  "workspace": {
    "id": 1873,
    "name": "Renamed Workspace",
    "owner_id": 15843,
    "updated_at": "2025-12-20T10:00:00.000000Z"
  },
  "status": "success"
}