1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-15 11:56:36 +02:00
Vitaly the Alpaca (bot) 74bc9c33f0 Main build (Jenkins)
2024-12-09 15:33:55 +03:00

66 lines
1.6 KiB
Plaintext

---
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
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Path = "/New/url_doc.docx";
Token = "sl.CCRidcEOx5_Sft41hhKNkIVvFAu8ZT1CoP6wh40MOAccwPZhLOI2YXXzbpEypt0YZf_3ZGYM9H...";
URL = "https://api.athenaeum.digital/test_data/document.docx";
Result = OPI_Dropbox.UploadFileByURL(Token, URL, Path);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint dropbox UploadFileByURL \
--token "***" \
--url "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/document.docx" \
--path "/New/url_doc.docx"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint dropbox UploadFileByURL ^
--token "***" ^
--url "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/document.docx" ^
--path "/New/url_doc.docx"
```
</TabItem>
</Tabs>
```json title="Result"
{
".tag": "async_job_id",
"async_job_id": "GB72x7EzrHQAAAAAAAAAAQ"
}
```