Deletes the symbol files belonging to the given application, OS, and version.
The request produces an application/json payload.
| DELETE | ManagedDynatrace for Government | https://{your-domain}/e/{your-environment-id}/api/config/v1/symfiles/{applicationId}/{packageName}/{os}/{versionCode}/{versionName} |
| Environment ActiveGate | https://{your-activegate-domain}/e/{your-environment-id}/api/config/v1/symfiles/{applicationId}/{packageName}/{os}/{versionCode}/{versionName} |
To execute this request, you need an access token with DssFileManagement scope.
To learn how to obtain and use it, see Tokens and authentication.
| Parameter | Type | Description | In | Required |
|---|---|---|---|---|
| applicationId | string | The UUID of the required mobile or custom application. It can be found in the Instrumentation Wizard of your app. | path | Required |
| packageName | string | The CFBundleIdentifier (iOS) or the package name (Android) of the required mobile app. | path | Required |
| os | string | The operating system of the required app. The element can hold these values
| path | Required |
| versionCode | string | The version code (Android) / CFBundleVersion (iOS) of the required app. | path | Required |
| versionName | string | The version name (Android) / CFBundleShortVersionString (iOS) of the required app. | path | Required |
| Code | Type | Description |
|---|---|---|
| 204 | - | Success. The file has been deleted successfully. Response doesn't have a body. |
| 400 | Error | Failed. The input is invalid. |
ErrorEnvelope object| Element | Type | Description |
|---|---|---|
| error | Error | - |
Error object| Element | Type | Description |
|---|---|---|
| code | integer | The HTTP status code |
| constraintViolations | Constraint | A list of constraint violations |
| message | string | The error message |
ConstraintViolation objectA list of constraint violations
| Element | Type | Description |
|---|---|---|
| location | string | - |
| message | string | - |
| parameterLocation | string | -The element can hold these values
|
| path | string | - |
{"error": {"code": 1,"constraintViolations": [{"location": "string","message": "string","parameterLocation": "HEADER","path": "string"}],"message": "string"}}