> ## Documentation Index
> Fetch the complete documentation index at: https://docs.drime.cloud/llms.txt
> Use this file to discover all available pages before exploring further.

# Move Vault Entries

> Move entries within the vault

## Overview

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

## Request Body

<ParamField body="entryIds" type="array" required>
  Array of entry IDs to move
</ParamField>

<ParamField body="destinationId" type="integer" required>
  Destination folder ID
</ParamField>

## Response

<ResponseField name="entries" type="array">
  The moved entries
</ResponseField>

<ResponseField name="destination" type="object">
  Destination folder object
</ResponseField>

<ResponseField name="status" type="string">
  Request status (`success`)
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  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
    }'
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://app.drime.cloud/api/v1/vault/file-entries/move', {
    method: 'POST',
    headers: {
      'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      entryIds: [111346],
      destinationId: 111347
    })
  });

  const { destination } = await response.json();
  console.log('Moved to:', destination.name);
  ```

  ```python Python theme={null}
  import requests

  response = requests.post(
      'https://app.drime.cloud/api/v1/vault/file-entries/move',
      headers={'Authorization': 'Bearer YOUR_ACCESS_TOKEN'},
      json={
          'entryIds': [111346],
          'destinationId': 111347
      }
  )

  print('Entries moved')
  ```
</RequestExample>

<ResponseExample>
  ```json 200 - Success theme={null}
  {
    "entries": [],
    "destination": {
      "id": 111347,
      "name": "Private Folder",
      "type": "folder",
      "is_encrypted": 1,
      "vault_id": 993
    },
    "status": "success"
  }
  ```
</ResponseExample>
