Pins or unpins all symbol files of an app version. A pinned file is not deleted automatically when the symbol file storage runs out of space.
The request produces an application/json
payload.
PUT | SaaS | https://{your-environment-id}.live.dynatrace.com/api/config/v1/symfiles/{applicationId}/{packageName}/{os}/{versionCode}/{versionName}/pinning |
Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/config/v1/symfiles/{applicationId}/{packageName}/{os}/{versionCode}/{versionName}/pinning |
To execute this request, you need an access token with DssFileManagement
scope.
To learn how to obtain and use it, see Tokens and authentication.
The operating system of the required app.
The CFBundleIdentifier (iOS) or the package name (Android) of the required mobile app.
The operating system of the required app.
ANDROID
IOS
TVOS
The version code (Android) / CFBundleVersion (iOS) of the required app.
The version name (Android) / CFBundleShortVersionString (iOS) of the required app.
SymbolFilePinning
objectThe pinning status of the file: true
to pin the file, false
to unpin the file.
This is a model of the request body, showing the possible elements. It has to be adjusted for usage in an actual request.
{"pinned": true}
Success. The pinning status of the filed has been updated. Response doesn't have a body.
We recommend that you validate the payload before submitting it with an actual request. A response code of 204 indicates a valid payload.
The request consumes an application/json
payload.
PUT | SaaS | https://{your-environment-id}.live.dynatrace.com/api/config/v1/symfiles/{applicationId}/{packageName}/{os}/{versionCode}/{versionName}/pinning/validator |
Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/config/v1/symfiles/{applicationId}/{packageName}/{os}/{versionCode}/{versionName}/pinning/validator |
To execute this request, you need an access token with DssFileManagement
scope.
To learn how to obtain and use it, see Tokens and authentication.
Validated. The submitted body is valid. Response does not have a body.