POST
/
workspace
/
folders
/
move
curl --request POST \
  --url https://api.mudstack.com/workspace/folders/move \
  --header 'Authorization: Bearer <token>' \
  --header 'x-account-id: <x-account-id>' \
  --header 'x-workspace-id: <x-workspace-id>'
{
  "failed": 123,
  "moved": 123
}

Authorizations

Authorization
string
header
required

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

Headers

x-account-id
string
required
x-workspace-id
string
required

Query Parameters

from
string
required

The current path of the folder to move.

to
string
required

The new path of the folder.

Response

200 - application/json
Folder moved successfully.
failed
number
moved
number