--- sidebar_position: 5 --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Get space usage data Gets information on the amount of used disk space `Function GetSpaceUsageData(Val Token) Export` | Parameter | CLI option | Type | Description | |-|-|-|-| | Token | --token | String | Token | Returns: Map Of KeyAndValue - serialized JSON response from Dropbox
```bsl title="Code example" Token = "sl.B-uquz3utwEHepKzyqLBfnFvmY1EWTYDus5LDjT5ux5srp9PJRtr7CvMv20nVl2rRGC3K4J_X5..."; Result = OPI_Dropbox.GetSpaceUsageData(Token); ``` ```json title="Result" { "used": 1477704605, "allocation": { ".tag": "individual", "allocated": 2147483648 } } ```