Nurama Developers
Projects

Move items within public file system

Moves items to a new location within the public file system. Paths are relative to `public/{publicId}`. Items already in the destination folder are skipped (`count` may be 0). Requires `canMovePublicFileSystemItems`; the token must belong to `projectId`. Does NOT check token expiration.

PUT
/projects/{projectId}/public/{token}/files/move

Moves items to a new location within the public file system. Paths are relative to public/{publicId}. Items already in the destination folder are skipped (count may be 0). Requires canMovePublicFileSystemItems; the token must belong to projectId. Does NOT check token expiration.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

projectId*string

Unique ID of the project.

Formatuuid
token*string

The public access token of the file system. Must belong to projectId.

Match^[a-zA-Z0-9]{10}$
Length10 <= length <= 10

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X PUT "https://example.com/projects/497f6eca-6276-4993-bfeb-53cbbbba6f08/public/stringstri/files/move" \  -H "Content-Type: application/json" \  -d '{    "itemPaths": [      "Renders/final.png",      "Renders/alt"    ],    "destinationPath": "Approved"  }'
{  "count": 1,  "virtualDestination": true,  "published": true,  "errors": [    {      "type": "string",      "message": "string",      "data": null    }  ]}