Mobile Symbolication API - PUT pin files
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 |
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 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.
Request body objects
The SymbolFilePinning
object
The pinning status of the file: true
to pin the file, false
to unpin the file.
Request body JSON model
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}
Response
Response codes
Success. The pinning status of the filed has been updated. Response doesn't have a body.
Validate payload
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 |
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.
Response
Response codes
Validated. The submitted body is valid. Response does not have a body.