Mobile Symbolication API - GET storage info

  • Reference

Gets the symbol file storage information.

The request produces an application/json payload.

GETSaaShttps://{your-environment-id}.live.dynatrace.com/api/config/v1/symfiles/info
Environment ActiveGatehttps://{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

CodeTypeDescription
200SymbolFileStorageInfo

Success

Response body objects

The SymbolFileStorageInfo object

ElementTypeDescription
availableStorageinteger

The available storage space for symbol files, in KB. Has the value of -1 for an unlimited quota.

fileCountinteger-
storageQuotainteger

The total storage quota for symbol files, in KB. Has the value of -1 for an unlimited quota.

usedStorageinteger

The size of the used storage by symbol files, in KB.

Response body JSON model

{
"availableStorage": 1,
"fileCount": 1,
"storageQuota": 1,
"usedStorage": 1
}