Mobile and custom app API - GET all user session properties
Lists all user session and user action properties from 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/{applicationId}/userActionAndSessionProperties |
SaaS | https://{your-environment-id}.live.dynatrace.com/api/config/v1/applications/mobile/{applicationId}/userActionAndSessionProperties | |
Environment ActiveGate | https://{your-activegate-domain}/e/{your-environment-id}/api/config/v1/applications/mobile/{applicationId}/userActionAndSessionProperties |
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 |
---|---|---|---|---|
applicationId | string | The ID of the required application. | path | required |
Response
Response codes
Code | Type | Description |
---|---|---|
200 | Mobile | Success |
Response body objects
The MobileSessionUserActionPropertyList
object
Contains lists of short representations of mobile session properties and mobile user action properties.
Element | Type | Description |
---|---|---|
sessionProperties | Mobile | A list of short representations of mobile session properties. |
userActionProperties | Mobile | A list of short representations of mobile user action properties. |
The MobileSessionUserActionPropertyShort
object
A short representation of mobile session or user action property.
Element | Type | Description |
---|---|---|
displayName | string | The display name of the session or user action property. |
key | string | The key of the session or user action property. |
Response body JSON model
{
"sessionProperties": [
{
"displayName": "string",
"key": "string"
}
],
"userActionProperties": [
{}
]
}