---
sidebar_position: 5
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Upload file by URL
Uploads a file to the cloud drive by fetching it from the specified URL
`Function UploadFileByURL(Val Token, Val FileURL, Val Path) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Token |
| FileURL | --url | String | ✔ | URL source of the file |
| Path | --path | String | ✔ | Save path on Dropbox |
Returns: Map Of KeyAndValue - serialized JSON response from Dropbox
```bsl title="1C:Enterprise/OneScript code example"
Path = "/New/url_doc.docx";
Token = "sl.CDM2TsVftn5aH3_nUX4tbw3JdByXhgO0FyL2ev0gBXGOhHv5k_uHgwYs0N_qMH4TQLm-nWvPGq...";
URL = "https://api.athenaeum.digital/test_data/document.docx";
Result = OPI_Dropbox.UploadFileByURL(Token, URL, Path);
```
```bash
oint dropbox UploadFileByURL \
--token "***" \
--url "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/document.docx" \
--path "/New/url_doc.docx"
```
```batch
oint dropbox UploadFileByURL ^
--token "***" ^
--url "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/document.docx" ^
--path "/New/url_doc.docx"
```
```json title="Result"
{
".tag": "async_job_id",
"async_job_id": "GB72x7EzrHQAAAAAAAAAAQ"
}
```