Mobile Symbolication API - PUT files for an app

Lists the metadata of all symbolication files (proguard files for Android or dSYM files for iOS Apps) for a mobile app from the symbol file store.

The request produces an application/json payload.

PUT
  • Managed https://{your-domain}/e/{your-environment-id}/api/config/v1/symfiles/{applicationId}/{packageName}/{os}/{versionCode}/{versionName}
  • SaaS https://{your-environment-id}.live.dexp.ae/api/config/v1/symfiles/{applicationId}/{packageName}/{os}/{versionCode}/{versionName}

Parameters

Parameter Type Description In Required
applicationId string

The application id used in DESK of the app this file belongs to

path required
packageName string

The CFBundleIdentifier (iOS) or the package name (Android) which identifies the app associated with the uploaded file

path required
os string

The operating system the file belongs to

The os element can hold these values.
path required
versionCode string

The version code (Android) / CFBundleVersion (iOS) the file belongs to

path required
versionName string

The version name (Android) / CFBundleShortVersionString (iOS) the file belongs to

path required
content-type string header optional
body InputStream

The file to be uploaded. A progurad file (*.txt) for Android or the zip file produced by the DTXDSSClient provided with the OneAgent for iOS.

body required

The InputStream object

Possible values

Possible values for the os element:

  • ANDROID
  • IOS
  • TVOS

Response format