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
}
]
}List available files from user’s Dropbox.
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
}
]
}Zo API key (zo_sk_...)
Optional folder path to list contents of
Optional Pipedream connection id to select account
Successful Response
Response model for list Dropbox files endpoint.
Show child attributes