Skip to main content
PUT
/
api
/
v1
/
workspaces
/
{id}
Update Workspace
curl --request PUT \
  --url https://colloqui-web-develop-btoadh.laravel.cloud/api/v1/workspaces/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "bngzmiyvdljnikhw",
  "description": "Eius et animi quos velit et."
}
'
{
  "data": {
    "id": "01kqh44bw06czv88qvvdsqvpt0",
    "name": "My Workspace",
    "description": "Example description.",
    "created_at": "2026-05-01T06:38:01+00:00",
    "updated_at": "2026-05-01T06:38:01+00:00"
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Path Parameters

id
string
required

The ID of the workspace.

Body

application/json
name
string
required

Must be at least 1 character.

Example:

"bngzmiyvdljnikhw"

description
string | null
Example:

"Eius et animi quos velit et."

Response

200 - application/json
data
object