Skip to main content
POST
/
vault
/
file-entries
/
move
curl -X POST https://app.drime.cloud/api/v1/vault/file-entries/move \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "entryIds": [111346],
    "destinationId": 111347
  }'
{
  "entries": [],
  "destination": {
    "id": 111347,
    "name": "Private Folder",
    "type": "folder",
    "is_encrypted": 1,
    "vault_id": 993
  },
  "status": "success"
}

Overview

Moves file entries to a different folder within the encrypted vault.

Request Body

entryIds
array
required
Array of entry IDs to move
destinationId
integer
required
Destination folder ID

Response

entries
array
The moved entries
destination
object
Destination folder object
status
string
Request status (success)
curl -X POST https://app.drime.cloud/api/v1/vault/file-entries/move \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "entryIds": [111346],
    "destinationId": 111347
  }'
{
  "entries": [],
  "destination": {
    "id": 111347,
    "name": "Private Folder",
    "type": "folder",
    "is_encrypted": 1,
    "vault_id": 993
  },
  "status": "success"
}