Space

Edit an existing space

PATCH
/api/v1/space/edit/{spaceId}
/api/v1/space/edit/{spaceId}

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

The updated space data

name
Required
string

Minimum length: 1

codestring | null

iconstring | null

Path Parameters

spaceId
Required
string

The ID of the space to edit

curl -X PATCH "https://example.com/api/v1/space/edit/string" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "string",
    "code": null,
    "icon": null
  }'

OK