Dropbox Upload avatar
Dropbox Upload

Pricing

Pay per usage

Go to Apify Store
Dropbox Upload

Dropbox Upload

Automatically uploads URLs to Dropbox. Use an API to upload information to Dropbox from URLs, text content or base64.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Petr Cermak

Petr Cermak

Maintained by Community

Actor stats

5

Bookmarked

46

Total users

0

Monthly active users

3 years ago

Last modified

Share

act-dropbox-upload

Apify act for uploading files to Dropbox.
It is capable of uploading a file accessible at a URL or by setting its contents as text or base64.

INPUT EXAMPLES

Uploading a file from URL

{
"accessToken": "DROPBOX_TOKEN", // dropbox access token
"filePath": "DROPBOX_FILE_PATH", // path on dropbox to save the file to
"fileUrl": "FILE_TO_UPLOAD" // url to get the file from
}

Uploading a file as text

{
"accessToken": "DROPBOX_TOKEN", // dropbox access token
"filePath": "DROPBOX_FILE_PATH", // path on dropbox to save the file to
"fileContents": "FILE_CONTENTS" // contents of the file as text
}

Uploading a file as base64

{
"accessToken": "DROPBOX_TOKEN", // dropbox access token
"filePath": "DROPBOX_FILE_PATH", // path on dropbox to save the file to
"fileBase64": "FILE_CONTENTS" // contents of the file as base64
}