> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Upload File

[upload](https://www.dropbox.com/developers/documentation/http/documentation#files-upload)

scope: `files.content.write`

Create a new file with the contents provided in the request.
Do not use this to upload a file larger than 150 MB.
Calls to this endpoint will count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more information, see the [Data transport limit page](https://www.dropbox.com/developers/reference/data-transport-limit).

## Basic Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                        |
  | --------------- | -------------------------------------------------------------------------------------------------- |
  | File Identifier | The identifier of the file. You can create a file identifier using the `Set File Variable` action. |
  | Path            | Path in the user's Dropbox to save the file.                                                       |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter   | Description                                                                                                                                                                                                                                                                |
  | ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Auto Rename | If there's a conflict, as determined by mode, have the Dropbox server try to auto-rename the file to avoid conflict. The default for this field is False.                                                                                                                  |
  | Mute        | Normally, users are made aware of any file modifications in their Dropbox account via notifications in the client software.<br />If true, this tells the clients that this modification shouldn't result in a user notification.<br />The default for this field is False. |
  | Write Mode  | Selects what to do if the file already exists. The default for this union is add.                                                                                                                                                                                          |
</div>

## Example Output

```json theme={"dark"}
{
	"name": "<string>",
	"path_lower": "<string>",
	"path_display": "<string>",
	"id": "<string>",
	"client_modified": "<string>",
	"server_modified": "<string>",
	"rev": "<string>",
	"size": 0,
	"is_downloadable": true,
	"content_hash": "<string>"
}
```

## Workflow Library Example

[Upload File with Dropbox and Send Results Via Email](https://library.blinkops.com/workflows/upload-file-with-dropbox-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/upload-file-with-dropbox-and-send-results-via-email/canvas" />
</div>
