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 |
|
Authentication
To execute this request, you need the Read configuration (ReadConfig
) permission assigned to your API token. 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 | Description |
---|---|
200 | Success |
Response body
The MobileSessionUserActionPropertyList object
Contains lists of short representations of mobile session properties and mobile user action properties.
Element | Type | Description |
---|---|---|
sessionProperties | MobileSessionUserActionPropertyShort[] | A list of short representations of mobile session properties. |
userActionProperties | MobileSessionUserActionPropertyShort[] | 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 |
---|---|---|
key | string | The key of the session or user action property. |
displayName | string | The display name of the session or user action property. |
{
"sessionProperties": [
{
"key": "string",
"displayName": "string"
}
],
"userActionProperties": [
{
"key": "string",
"displayName": "string"
}
]
}