PUT
/
workspaces
/
{workspacePublicId}
curl --request PUT \
  --url https://kanbn.com/api/v1/workspaces/{workspacePublicId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "slug": "<string>",
  "description": "<string>"
}'
"<any>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspacePublicId
string
required
Minimum length: 12

Body

application/json
name
string
Required string length: 3 - 24
slug
string
Required string length: 3 - 24
description
string
Required string length: 3 - 280

Response

200
application/json
Successful response

The response is of type any.