Active |
---|
This application does not need additional settings. So you can make connectionUnique, active service acces point to a network. There are different types of connections (API key, Oauth…). only by using your login credentials or by following the instructions below . |
Important | |
---|---|
Any references to third-party products or services do not constitute Boost.spaceA platform that centralizes and synchronizes company data from internal and external sources, offering a suite of modules and addons for project management, CRM, data visualization, and more. Has many features to optimize your workflow! Product Documentation nor do they create any contractual obligations. This material is for informational purposes only and is subject to change without notice. Boost.space does not warrant the availability, accuracy, reliability, completeness, or usefulness of any information regarding the subject of third-party services or systems. |
With Dropbox modulesa module is an application or tool designed to handle specific business functions, such as CRM, project management, or inventory. The system's modular architecture allows you to activate only the modules you need, enabling customization and scalability as your business requirements evolve. in Boost.space IntegratorPart of the Boost.space system, where you can create your connections and automate your processes., you can manage the files and folders in your Dropbox account.
To use the Dropbox modules, you must have a Dropbox account. You can create an account at www.dropbox.com/register.
Refer to the Dropbox API documentation for a list of available endpoints.
To establish the connection in Boost.space Integrator:
-
Log in to your Boost.space Integrator account, add a Dropbox modulea module is an application or tool designed to handle specific business functions, such as CRM, project management, or inventory. The system's modular architecture allows you to activate only the modules you need, enabling customization and scalability as your business requirements evolve. to your scenarioA specific connection between applications in which data can be transferred. Two types of scenarios: active/inactive., and click Create a connection.
-
Optional: In the Connection name field, enter a name for the connection.
-
Optional: Click Show advanced settings and enter your custom appCreate your own custom apps to be used in the integrator engine and share them with users in your organization. client credentials. For more information, refer to Dropbox OAuth Guide.
If requested, use the following Redirect URI when creating your custom app:
https://integrator.boost.space/oauth/cb/dropbox
https://auth.redirect.celonis.cloud/oauth/cb/dropbox
-
Click Save.
-
If prompted, authenticate your account and confirm access.
You have successfully established the connection. You can now edit your scenario and add more Dropbox modules. If your connection requires reauthorization at any point, follow the connection renewal steps here.
Build Dropbox ScenariosA specific connection between applications in which data can be transferred. Two types of scenarios: active/inactive.
After connecting the app, you can perform the following actions:
TriggerThe initial event that starts a scenario. It can be an action, a scheduled time, or a custom event, and is essential to define at the beginning of each scenario. Files
-
Watch Files
Get Files/Folders
-
Search Files/Folders
-
Download a File
-
List All Files/Subfolders in a Folder
-
List File Revisions
Create & Update File/Folder
-
Upload a File
-
Create a Folder
-
Create/Overwrite a Text File
-
Create/Update a Share Link
-
Restore a File
-
Move a File/Folder
-
Rename a File/Folder
-
Delete a File/Folder
-
Copy a File/Folder
File Requests
-
Create a File Request
-
Get a File Request
-
Update a File Request
-
Delete Closed File Requests
-
List File Requests
Other
-
Make an API Call
There are several situations when uploading or updating a file fails:
-
The uploaded file is too big and exceeds the maximum file size allowed for your Dropbox plan or you have used all of your Dropbox account’s storage quota. You will either need to delete existing files from your Dropbox account or upgrade your plan.
-
The previously selected folder, to which the file is being uploaded to, no longer exists. The scenario gets stopped and you will need to select the target folder again.
The URL returned by the Dropbox > Create a shared link does not link directly to an image, but to a Dropbox page – see https://www.dropbox.com/help/desktop-web/force-download for further details. To force the image to download, replace the trailing ?dl=0
with ?dl=1
. To force the image to render (e.g. in a Web browser or in Facebook Messenger), append &raw=1
to the URL.
If you need to get the direct/raw link of your image which you can use for your website or for other Boost.space Integrator modules you need to modify the initial shared URL in the following way:
Let’s say your initial URL is:
https://www.dropbox.com/s/ia8qtvs20f3a5ux/Screen%20Shot%202018-10-15%20at%204.21.11%20PM.png?dl=0
1. replace www with dl
2. remove ?dl=0
Your final URL should be:
https://dl.dropbox.com/s/ia8qtvs20f3a5ux/Screen%20Shot%202018-10-15%20at%204.21.11%20PM.png
To do it automatically, use thereplace() functionFunctions you can use in Boost.space Integrator - create, update, delete, get, search. twice:
to replace www with dl
and
to remove ?dl=0
To do it in one step, combine these functionsFunctions you can use in Boost.space Integrator - create, update, delete, get, search.:
You can use this code. Just copy it and paste it into the field and replace variable with the URL.
{{replace(replace(1.url; “?dl=0”; “”); “www”; “dl”)}}