PATCH
/
workspaces
/
{workspace_id}
Update Workspace
curl --request PATCH \
  --url https://api.wacht.dev/workspaces/{workspace_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>"
}'
{
  "id": "<string>",
  "organization_id": "<string>",
  "name": "Engineering Team",
  "slug": "engineering",
  "description": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "member_count": 12,
  "roles": [
    {
      "id": "<string>",
      "name": "Admin",
      "description": "<string>",
      "permissions": [
        "workspace.manage",
        "members.invite",
        "members.remove"
      ],
      "is_default": false,
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication using the Authorization header

Path Parameters

workspace_id
string
required

(i64 formatted as string)

Body

application/json

Response

200
application/json

Workspace updated successfully

The response is of type object.