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

# Dropbox

> Connect Dropbox to your Atako agents — 10 read and 8 write actions.

Let your agents browse, organize and share the files in your Dropbox.

## Connection

* **Authentication**: OAuth 2.0 — you authorize Atako via Dropbox's consent screen; no key to copy.
* **Scopes requested**:
  * `files.metadata.read`
  * `files.content.write`
  * `sharing.write`
  * `account_info.read`

See [Dropbox's documentation](https://www.dropbox.com/developers/documentation/http/documentation).

## Read actions (10)

| Action                 | Description                                            |
| ---------------------- | ------------------------------------------------------ |
| `get_current_account`  | Fetch the connected Dropbox account profile.           |
| `get_metadata`         | Fetch the metadata of a file or folder.                |
| `get_space_usage`      | Fetch storage quota and usage for the account.         |
| `get_temporary_link`   | Get a 4-hour download link for a file.                 |
| `list_file_members`    | List who has access to a file.                         |
| `list_folder`          | List the entries of a folder ("" for the root).        |
| `list_folder_continue` | Fetch the next page of a folder listing from a cursor. |
| `list_revisions`       | List the revisions of a file.                          |
| `list_shared_links`    | List shared links, optionally for a specific path.     |
| `search_files`         | Search files and folders by name or content.           |

## Write actions (8)

| Action               | Description                                |
| -------------------- | ------------------------------------------ |
| `add_file_member`    | Invite members to access a file.           |
| `copy_file`          | Copy a file or folder to a new path.       |
| `create_folder`      | Create a folder at the given path.         |
| `create_shared_link` | Create a shared link for a file or folder. |
| `delete_file`        | Move a file or folder to the trash.        |
| `move_file`          | Move or rename a file or folder.           |
| `restore_file`       | Restore a file to a previous revision.     |
| `revoke_shared_link` | Revoke a shared link.                      |

## Permissions

Every action above must be explicitly granted to an agent before it can be used. See [Permissions](/integrations/permissions) for the grant model and [Security](/integrations/security) for how credentials are protected.
