1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-27 22:18:36 +02:00
Files
OpenIntegrations/docs/en/md/Dropbox/Account-and-authorization/Get-space-usage-data.mdx

63 lines
2.0 KiB
Plaintext
Raw Normal View History

2024-10-15 10:50:56 +03:00
---
2024-10-15 10:16:04 +03:00
sidebar_position: 5
2025-05-05 11:15:20 +03:00
description: Get space usage data and other functions to work with Dropbox in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
2025-05-05 09:49:19 +03:00
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Dropbox]
2024-10-15 10:16:04 +03:00
---
2024-10-15 10:50:56 +03:00
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
2024-10-15 10:16:04 +03:00
# Get space usage data
Gets information on the amount of used disk space
`Function GetSpaceUsageData(Val Token) Export`
2024-10-15 15:15:47 +03:00
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Token |
2024-10-15 10:16:04 +03:00
Returns: Map Of KeyAndValue - serialized JSON response from Dropbox
<br/>
2024-10-15 21:15:56 +03:00
```bsl title="1C:Enterprise/OneScript code example"
2025-06-29 14:35:33 +03:00
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...";
2024-10-15 10:16:04 +03:00
Result = OPI_Dropbox.GetSpaceUsageData(Token);
```
2024-10-20 22:36:03 +03:00
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint dropbox GetSpaceUsageData \
2024-10-22 08:59:24 +03:00
--token "***"
2024-10-20 22:36:03 +03:00
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint dropbox GetSpaceUsageData ^
2024-10-22 08:59:24 +03:00
--token "***"
2024-10-20 22:36:03 +03:00
```
</TabItem>
</Tabs>
2024-10-15 10:16:04 +03:00
```json title="Result"
{
"used": 1477704605,
"allocation": {
".tag": "individual",
"allocated": 2147483648
}
}
```