mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-21 01:50:24 +02:00
46 lines
1.0 KiB
Markdown
46 lines
1.0 KiB
Markdown
|
---
|
||
|
sidebar_position: 5
|
||
|
---
|
||
|
|
||
|
# 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 | Destination |
|
||
|
|-|-|-|-|
|
||
|
| Token | --token | String | Token |
|
||
|
| FileURL | --url | String | URL source of the file |
|
||
|
| Path | --path | String | Save path on Dropbox |
|
||
|
|
||
|
|
||
|
Returns: Key-Value Pair - serialized JSON response from Dropbox
|
||
|
|
||
|
```bsl title="Code example"
|
||
|
|
||
|
Path = "/New/url_doc.docx";
|
||
|
Token = "sl.B2ieEHcB9I9BTwJFjbf_MQtoZMKjGYgkpBqzQkvBfuSz41Qpy5r3d7a4ax22I5ILWhd9KLbN5L...";
|
||
|
URL = "https://openintegrations.dev/test_data/document.docx";
|
||
|
|
||
|
Result = OPI_Dropbox.UploadFileByURL(Token, URL, Path);
|
||
|
|
||
|
|
||
|
```
|
||
|
|
||
|
```sh title="CLI command example"
|
||
|
|
||
|
oint dropbox UploadFileByURL --token "sl.B2ieEHcB9I9BTwJFjbf_MQtoZMKjGYgkpBqzQkvBfuSz41Qpy5r3d7a4ax22I5ILWhd9KLbN5L..." --url %url% --path "/New/url_doc.docx"
|
||
|
|
||
|
```
|
||
|
|
||
|
|
||
|
```json title="Result"
|
||
|
|
||
|
{
|
||
|
".tag": "async_job_id",
|
||
|
"async_job_id": "41d0vPCn2mYAAAAAAAAAAQ"
|
||
|
}
|
||
|
|
||
|
```
|