Mobile Symbolication API - GET storage info
Gets the symbolication files storage information.
The request produces an application/json
payload.
GET |
|
Authentication
To execute this request, you need the Mobile symbolication file management (DssFileManagement
) permission assigned to your API token. To learn how to obtain and use it, see Tokens and authentication.
Parameters
The request doesn't provide any configurable parameters.
Response
Response codes
Code | Description |
---|---|
200 | Success |
Response body
The SymbolFileStorageInfo object
Element | Type | Description |
---|---|---|
usedStorage | integer | The size of the used storage by symbolication files in KB |
availableStorage | integer | The storage space still empty which can be used for symbolication files in KB |
storageQuota | integer | The total storage quota available on this tenant for symbolication files in KB |
fileCount | integer |
{
"usedStorage": 0,
"availableStorage": 0,
"storageQuota": 0,
"fileCount": 0
}