Mobile and custom app API - GET an app
Gets parameters of the specified mobile or custom app.
The request produces an application/json
payload.
GET | ManagedDynatrace for Government | https://{your-domain}/e/{your-environment-id}/api/config/v1/applications/mobile/{id} |
SaaS | https://{your-environment-id}.live.dynatrace.com/api/config/v1/applications/mobile/{id} | |
Environment ActiveGate | https://{your-activegate-domain}/e/{your-environment-id}/api/config/v1/applications/mobile/{id} |
Authentication
To execute this request, you need an access token with ReadConfig
scope.
To learn how to obtain and use it, see Tokens and authentication.
Parameters
Parameter | Type | Description | In | Required |
---|---|---|---|---|
id | string | The ID of the required mobile or custom application. | path | required |
Response
Response codes
Code | Type | Description |
---|---|---|
200 | Mobile | Success |
404 | Failed. The specified entity doesn't exist. |
Response body objects
The MobileCustomAppConfig
object
Configuration of an existing mobile or custom application.
Element | Type | Description |
---|---|---|
identifier | string | The Dynatrace entity ID of the application. |
name | string | The name of the application. |
applicationType | string | The type of the application. |
applicationId | string | The UUID of the application. It is used only by OneAgent to send data to Dynatrace. |
iconType | string | Custom application icon. Mobile apps always use the mobile device icon, so this icon can only be set for custom apps. |
costControlUserSessionPercentage | integer | The percentage of user sessions to be analyzed. |
apdexSettings | Mobile | Apdex configuration of a mobile or custom application. A duration less than the tolerable threshold is considered satisfied. |
optInModeEnabled | boolean | The opt-in mode is enabled ( This value is only applicable to mobile and not to custom apps. |
sessionReplayEnabled | boolean | The session replay is enabled ( |
sessionReplayOnCrashEnabled | boolean | Deprecated. Please use |
beaconEndpointType | string | The type of the beacon endpoint. |
beaconEndpointUrl | string | The URL of the beacon endpoint. Only applicable when the beaconEndpointType is set to |
The MobileCustomApdex
object
Apdex configuration of a mobile or custom application.
A duration less than the tolerable threshold is considered satisfied.
Element | Type | Description |
---|---|---|
toleratedThreshold | integer | Apdex tolerable threshold, in milliseconds: a duration greater than or equal to this value is considered tolerable. |
frustratingThreshold | integer | Apdex frustrated threshold, in milliseconds: a duration greater than or equal to this value is considered frustrated. |
frustratedOnError | boolean | Apdex error condition: if |
Response body JSON model
{
"identifier": "string",
"name": "string",
"applicationType": "CUSTOM_APPLICATION",
"applicationId": "string",
"iconType": "AMAZON_ECHO",
"costControlUserSessionPercentage": 1,
"apdexSettings": {
"toleratedThreshold": 1,
"frustratingThreshold": 1,
"frustratedOnError": true
},
"optInModeEnabled": true,
"sessionReplayEnabled": true,
"sessionReplayOnCrashEnabled": true,
"beaconEndpointType": "CLUSTER_ACTIVE_GATE",
"beaconEndpointUrl": "string"
}