Skip to main content
POST
/
projects
/
{project_id}
/
actions
/
#DROPBOX_DOWNLOAD_FILE
Download File
curl --request POST \
  --url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#DROPBOX_DOWNLOAD_FILE' \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "action": "DROPBOX_DOWNLOAD_FILE",
  "parameters": {
    "fileName": "<string>"
  }
}'
{
  "url": "<string>"
}
This Action will respond with a temporary signed download URL from the Dropbox API. Send a request to this URL to get a response with a byte stream of the file data.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_id
string
required

Your Paragon Project ID

Body

application/json
action
string
default:DROPBOX_DOWNLOAD_FILE
required
parameters
object
required

Response

201 - application/json

Response with File URL

url
string

A temporary signed download URL from the Dropbox API. Send a request to this URL from your request client or provide the URL to an LLM provider to download or use the file contents.

I