Skip to main content
PUT
/
workspaces
/
{workspace_id}
Update Workspace
curl --request PUT \
  --url https://api.example.com/workspaces/{workspace_id}/ \
  --header 'Content-Type: application/json' \
  --data '
{
  "slug": "<string>",
  "deleted_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "logo": "<string>",
  "developer_mode": false
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Path Parameters

workspace_id
string<uuid>
required

Body

application/json
slug
string
required
deleted_at
string<date-time> | null
created_at
string<date-time>
updated_at
string<date-time>
id
string<uuid>
name
string | null
logo
string | null
developer_mode
boolean
default:false

Response

Successful Response