Get upload status by URL
Gets the upload status of the file by URL
Function GetUploadStatusByURL(Val Token, Val JobID) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Token | --token | String | ✔ | Token |
JobID | --job | String | ✔ | ID of async jsob from UploadFileByURL response |
Returns: Map Of KeyAndValue - serialized JSON response from Dropbox
1C:Enterprise/OneScript code example
Token = "sl.CBL71_21WiKphqlWV34l0tlFn8eGn_YrnPrMexNmHltofj3DkBRsnpQEFY5O5H6i-iRl3bPDBi...";
WorkID = "Sk7ycEczHV4AAAAAAAAAAQ";
Status = "in_progress";
WHile Status = "in_progress" Do
Result = OPI_Dropbox.GetUploadStatusByURL(Token, WorkID);
Status = Result[".tag"];
OPI_Tools.Pause(5);
EndDo;
- Bash
- CMD/Bat
oint dropbox GetUploadStatusByURL \
--token "***" \
--job "3yqirRfg-30AAAAAAAAAAQ"
oint dropbox GetUploadStatusByURL ^
--token "***" ^
--job "3yqirRfg-30AAAAAAAAAAQ"
Result
{
".tag": "complete",
"name": "url_doc.docx",
"path_lower": "/new/url_doc.docx",
"path_display": "/New/url_doc.docx",
"id": "id:kJU6-a-pT48AAAAAAAAclg",
"client_modified": "2024-10-09T06:17:00Z",
"server_modified": "2024-10-09T06:17:01Z",
"rev": "6240533b3289cbd841553",
"size": 24069,
"is_downloadable": true,
"content_hash": "8d63c5989ceec1a90f3fde2ffaa76efcd2c050191e6b55a1761e4e352590bd8c"
}