Brault Developers

Move a folder

Regionalus.api.brault.appfollows the region selector in the top bar
POST
/v1/folders/{folderId}/move

Give exactly one of library_id, folder_id. A folder always belongs to a library, so there is no move to the brandspace root.

AuthorizationBearer <token>

API key from Settings → Developers

In: header

Path Parameters

folderId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/v1/folders/string/move" \  -H "Content-Type: application/json" \  -d '{}'
{  "object": "folder",  "id": "string",  "name": "string",  "library_id": "string",  "parent_id": "string",  "color": "#676666",  "created_at": "2019-08-24T14:15:22Z",  "updated_at": "2019-08-24T14:15:22Z",  "created_by_id": "string",  "trashed_at": "2019-08-24T14:15:22Z"}