Mobile Symbolication API - GET storage info
Gets the symbol file storage information.
The request produces an application/json
payload.
GET | ManagedDynatrace for Government | 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}:9999/e/{your-environment-id}/api/config/v1/symfiles/info |
Authentication
To execute this request, you need an access token with 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 | SymbolFileStorageInfo | Success |
Response body objects
The SymbolFileStorageInfo
object
Element | Type | Description |
---|---|---|
availableStorage | integer | The available storage space for symbol files, in KB. Has the value of |
fileCount | integer | - |
storageQuota | integer | The total storage quota for symbol files, in KB. Has the value of |
usedStorage | integer | The size of the used storage by symbol files, in KB. |
Response body JSON model
1{2 "availableStorage": 1,3 "fileCount": 1,4 "storageQuota": 1,5 "usedStorage": 16}