Mobile Symbolication API - GET storage info
Gets the symbolication file storage information.
The request produces an application/json
payload.
GET | Managed | https://{your-domain}/e/{your-environment-id}/api/config/v1/symfiles/info |
SaaS | https://{your-environment-id}.live.dynatrace.com/api/config/v1/symfiles/info | |
Environment ActiveGate | https://{your-activegate-domain}/e/{your-environment-id}/api/config/v1/symfiles/info |
Authentication
To execute this request, you need an access token with Mobile symbolication file management (DssFileManagement
) scope. 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 | Type | Description |
---|---|---|
200 | Symbol | Success |
Response body objects
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, -1 if quota is set to 'unlimited' |
storageQuota | integer | The total storage quota available on this tenant for symbolication files in KB, -1 if quota is set to 'unlimited' |
fileCount | integer | - |
Response body JSON model
{
"usedStorage": 1,
"availableStorage": 1,
"storageQuota": 1,
"fileCount": 1
}