Skip to main content
GET
/
connections
/
dropbox
/
files
List Dropbox Files
curl --request GET \
  --url https://api.zo.computer/connections/dropbox/files \
  --header 'Authorization: Bearer <token>'
{
  "files": [
    {
      "id": "<string>",
      "name": "<string>",
      "pathLower": "<string>",
      "pathDisplay": "<string>",
      "isFolder": true,
      "modifiedTime": "<string>",
      "size": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Zo API key (zo_sk_...)

Query Parameters

path
string | null

Optional folder path to list contents of

account_id
string | null

Optional Pipedream connection id to select account

Response

Successful Response

Response model for list Dropbox files endpoint.

files
DropboxFile · object[]
required