Dropbox integration | Zervanor
← All connectors

Dropbox

Also an agent tool
productivity

Dropbox integration (HTTP API v2 — RPC style, all-POST, JSON body). Files metadata/folder operations (list/get/create/delete/move/copy/search/revisions/restore), sharing links, users account/space, and file requests. OAuth 2.0 (offline refresh). Real signed webhook (X-Dropbox-Signature HMAC-SHA256, generic_hmac) emitting a single account-level files-changed trigger. Binary content endpoints (upload/download/thumbnail/preview on content.dropboxapi.com) are deferred — see dropbox-02.

19 actions · 2 triggers

The Dropbox integration lets you connect Dropbox to your automations with 19 actions and 2 triggers — and every action is also a tool an AI agent can call. Examples: Get Current Account, Get Space Usage, List Folder, List Folder (Continue), Get Latest Cursor. No blank-canvas wiring — connect it and use it in your workflows.

Every action below is also a tool an AI agent can call — the same pack powers your workflows and your agents.

Triggers 2

Events in Dropbox that can start a workflow.

webhook

Files Changed

Fires when Dropbox notifies that one or more accounts have changes. The signed POST carries only changed account ids (list_folder.accounts) and user ids (delta.users) — not the file diffs; chain a list_folder_continue with the stored cursor to fetch the actual changes (dropbox-01).

polling

Dropbox folder changed (incremental)

True delta polling via get_latest_cursor bootstrap + list_folder_continue deltas. Set 'path' in user params (e.g. '' for root or '/Documents').

Actions 19

What Zervanor can do in Dropbox.

Files12

POST

List Folder

Start listing a folder's contents; returns entries + cursor (Dropbox: POST /files/list_folder). Use '' (empty string) for the root. Cursor-paginated via list_folder_continue.

POST

List Folder (Continue)

Page through folder contents and fetch deltas after a webhook, via cursor (Dropbox: POST /files/list_folder/continue).

POST

Get Latest Cursor

Get a cursor for the folder's current state without entries (Dropbox: POST /files/list_folder/get_latest_cursor). Used to seed the webhook delta follow-up.

POST

Get Metadata

Return metadata for a file or folder by path (Dropbox: POST /files/get_metadata).

POST

Search

Search files and folders (Dropbox: POST /files/search_v2). Cursor-paginated.

POST

Create Folder

Create a folder at a path (Dropbox: POST /files/create_folder_v2). Returns {metadata:{id, path_lower, path_display, name}}. WRITE test target (paired with delete_file cleanup).

POST

Delete

Delete a file or folder at a path (Dropbox: POST /files/delete_v2). Returns {metadata}. CLEANUP test target for create_folder.

POST

Move

Move a file or folder to a new location (Dropbox: POST /files/move_v2).

POST

Copy

Copy a file or folder to a new location (Dropbox: POST /files/copy_v2).

POST

List Revisions

List revisions of a file by path or id (Dropbox: POST /files/list_revisions).

POST

Restore

Restore a file to a specific revision (Dropbox: POST /files/restore).

POST

Get Temporary Link

Get a temporary direct-streaming link to a file's content (Dropbox: POST /files/get_temporary_link). Returns a URL (no binary I/O) — a metadata stand-in for content read.

Sharing3

POST

Create Shared Link

Create a shared link for a path with link settings (Dropbox: POST /sharing/create_shared_link_with_settings).

POST

List Shared Links

List the current user's shared links, cursor-paginated (Dropbox: POST /sharing/list_shared_links).

POST

Revoke Shared Link

Revoke a shared link (Dropbox: POST /sharing/revoke_shared_link).

File Requests2

POST

Create File Request

Create a file request (Dropbox: POST /file_requests/create).

POST

List File Requests

List the user's file requests, paginated (Dropbox: POST /file_requests/list_v2). Null/empty body for the first page.

Users2

POST

Get Current Account

Get the current authenticated user's account info (Dropbox: POST /users/get_current_account). Null/empty body. Safe identity probe — connector READ test target.

POST

Get Space Usage

Get storage usage for the current account (Dropbox: POST /users/get_space_usage). Null/empty body.

Automations using Dropbox

Build your own automation with Dropbox in the visual builder.

Frequently asked questions

What can I automate with Dropbox?

19 actions are available — for example: Get Current Account, Get Space Usage, List Folder, List Folder (Continue), Get Latest Cursor, and more.

Which Dropbox events can start a workflow?

2 triggers — for example: Files Changed, Dropbox folder changed (incremental).

Can Dropbox be used as an AI agent tool?

Yes. Every Dropbox action automatically becomes a tool an AI agent can call — the same pack powers both your workflows and your agents.

How is the Dropbox integration modelled?

Dropbox is modelled as a versioned connector pack, and the steps that need reasoning fall to first-party agents hosted in the same runtime as the workflows.