Mobile and custom app API - GET key user actions

Gets the list of the key user actions in the specified app.

The request produces an application/json payload.

GETSaaShttps://{your-environment-id}.live.dynatrace.com/api/config/v1/applications/mobile/{applicationId}/keyUserActions
Environment ActiveGatehttps://{your-activegate-domain}:9999/e/{your-environment-id}/api/config/v1/applications/mobile/{applicationId}/keyUserActions

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
200KeyUserActionMobileList

Success

404-

Failed. The specified entity doesn't exist.

Response body objects

The KeyUserActionMobileList object

A list of key actions in an application.

ElementTypeDescription
keyUserActionsKeyUserActionMobile[]

A list of key actions in an application.

The KeyUserActionMobile object

A key user action.

ElementTypeDescription
namestring

The name of the key user action.

Response body JSON model

{
"keyUserActions": [
{
"name": "string"
}
]
}