Space

Create a space

POST
/api/v1/space/create
/api/v1/space/create

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

The space to create

teamIdstring | null

name
Required
string

Minimum length: 1

codestring | null

iconstring | null

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

OK