Get object information
Gets information about a file or directory
Function GetObjectInformation(Val Token, Val Path, Val Detailed = False) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Token | --token | String | ✔ | Token |
Path | --path | String | ✔ | Path to the object |
Detailed | --detail | Boolean | ✖ | Add information fields for mediafiles |
Returns: Map Of KeyAndValue - serialized JSON response from Dropbox
1C:Enterprise/OneScript code example
Path = "/New/pic.png";
Token = "sl.u.AF2u0jJrW_SK10XagkkZ5L5bjzw8sb7clArwDhHprOJEY18V8Kr4HcW7AhIzK5MkETtxhKDO-DH2snp5Bxh1QNmgYpz_YHnaagV_SeSZc6dM6rSXArOEUZThCX17OGrgluUy3Apne71bjQ4ocsT0n-gzikTxjec9JY_scMNDmBAPlbPE5K0bDI2eJvocbU9V6dfgpo7EkKipNS_F27gjOnE2O5gH1WkX_pLdNOlqVw6W9vraDnD7liZywj-3PETjlkxaZutUzb2mJ1wpioehZoq4ffEtWyeARYOtvfzkyMgFEd7OCLmdj2K42r9tvyZJA9IqOO7sxfCP1Q442DnUb7ZXL_UXorNdWvPrJsDWBhn7s0JIvyAOLQRP0cOeXwzj7QRa94PotVEhhL0CnaLwoM-ZjKSMRNDlweSVgu82gndjrunenbCVejmI3Z_oaYRYf-duwp1OqWLM59iPA_QEaHEpOZKLNHUkpf_BrYa1iEw4VRSRGU2-gUK8RvhZSjZnCsrSyLt7_A4oEdH6TQ8uSp02GDJ6uUAra5e4iFSN5IRdJBD0RHLTW2riiYcqdn893HfHyP7FQClYTxH9Am82AGVGxYc-OEvD6Ki-elVgRDMx64OOMULEdDmPl_FWrQqAgvWEKIO092iI4dTJveUXxS_OB2sMlY5Ps_vmkikOAPapkMThIJHgaQRMe1YF48Ih07zY3zab2GL0Q5PIEyoCLcW9fHP385F...";
Result = OPI_Dropbox.GetObjectInformation(Token, Path, True);
- Bash
- CMD/Bat
oint dropbox GetObjectInformation \
--token "***" \
--path "/New/pic.png" \
--detail true
oint dropbox GetObjectInformation ^
--token "***" ^
--path "/New/pic.png" ^
--detail true
Result
{
".tag": "file",
"name": "pic.png",
"path_lower": "/new/pic.png",
"path_display": "/New/pic.png",
"id": "id:kJU6-a-pT48AAAAAAAAckw",
"client_modified": "2024-10-09T06:15:59Z",
"server_modified": "2024-10-09T06:15:59Z",
"rev": "62405300c4139bd841553",
"size": 2114023,
"is_downloadable": true,
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
}