• Home
  • Dynatrace API
  • Configuration
  • RUM
  • Mobile and custom app
  • User action and session properties
  • GET all user session properties

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.

GETManagedDynatrace for Governmenthttps://{your-domain}/e/{your-environment-id}/api/config/v1/applications/mobile/{applicationId}/userActionAndSessionProperties
SaaShttps://{your-environment-id}.live.dynatrace.com/api/config/v1/applications/mobile/{applicationId}/userActionAndSessionProperties
Environment ActiveGatehttps://{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

ParameterTypeDescriptionInRequired
applicationIdstring

The ID of the required application.

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
keystring

The key of the session or user action property.

displayNamestring

The display name of the session or user action property.

Response body JSON model

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