Skip to main content
PUT
/
base
/
{baseId}
/
move
move a base to another space
curl --request PUT \
  --url http://127.0.0.1:3000/api/base/{baseId}/move \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "spaceId": "<string>"
}
'

Authorizations

Authorization
string
header
required

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

Path Parameters

baseId
string
required

Body

application/json
spaceId
string
required

Response

200

move to another space successfully

Last modified on December 10, 2025