Mobile and custom app API - GET all user session properties

  • Reference

Lists all user session and user action properties from the specified mobile or custom app.

The request produces an application/json payload.

GETSaaShttps://{your-environment-id}.live.dynatrace.com/api/config/v1/applications/mobile/{applicationId}/userActionAndSessionProperties
Environment ActiveGatehttps://{your-activegate-domain}:9999/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

ParameterTypeDescriptionInRequired
applicationIdstring

The UUID of the required mobile or custom application. It can be found in the Instrumentation Wizard of your app.

pathrequired

Response

Response codes

CodeTypeDescription
200MobileSessionUserActionPropertyList

Success

Response body objects

The MobileSessionUserActionPropertyList object

Contains lists of short representations of mobile session properties and mobile user action properties.

ElementTypeDescription
sessionPropertiesMobileSessionUserActionPropertyShort[]

A list of short representations of mobile session properties.

userActionPropertiesMobileSessionUserActionPropertyShort[]

A list of short representations of mobile user action properties.

The MobileSessionUserActionPropertyShort object

A short representation of mobile session or user action property.

ElementTypeDescription
displayNamestring

The display name of the session or user action property.

keystring

The key of the session or user action property.

Response body JSON model

{
"sessionProperties": [
{
"displayName": "string",
"key": "string"
}
],
"userActionProperties": [
{}
]
}