- 20 Dec 2024
- 2 Minutes à lire
- SombreLumière
- PDF
userActivityQuery (Command)
- Mis à jour le 20 Dec 2024
- 2 Minutes à lire
- SombreLumière
- PDF
The userActivityQuery command allows to query the recent authentication, signature validation, administration, and provisioning activity of a particular user.
Parameters
Parameter name | Data type | Description |
---|---|---|
sessionID | String | Required. The session identifier of the current administrative session. The logon command returns this identifier after a successful logon (see logon (Command)). |
options | UserActivityQueryOptions | Optional. Options to determine what results should be returned. See UserActivityQueryOptions (Data type). |
user | UserActivityInput | Required. Specifies the user to query recent activities (see UserActivityInput (Data type)). |
Parameter name | Data type | Description |
---|---|---|
errorStack | ErrorStack | Optional. The error stack, indicating that the command has not completed successfully. |
resultCodes | ResultCodes | Required. The result and status codes returned by the command. |
resultCount | Integer | Required. The number of items in userActivityList. |
userActivityList | UserActivityList | Optional. List containing the queried user activities (see UserActivityList (Data type)). |
UserActivityInput (Data type)
Element name | Data type | Description |
---|---|---|
userID | String | The ID of the user to query. |
domain | String | The domain of the user to query. |
UserActivityQueryOptions (Data type)
Element name | Type | Description |
---|---|---|
rowOffset | Unsigned Integer | Optional. Option to request OneSpan Authentication Server to return result records starting from the specified offset. Can only be used together with rowCount. Default value: 0 |
rowCount | Unsigned Integer | Optional. Option to request OneSpan Authentication Server to return the specified number of result records, beginning with the record specified by rowOffset. If set to 0, all result records are returned. Default value: 0 |
countOnly | Boolean | Optional. Flag to request OneSpan Authentication Server to return only the number of records in the result set, but not the result set itself. Default value: false |
filter | UserActivityFilterExpression | Optional. Filter configuration for the result set (see UserActivityFilterExpression (Data type)). |
sortOrder | UserActivitySortOrder | Optional. Determines the sort order of the result set. By default, the result set is not sorted (see UserActivitySortOrder (Data type)). |
UserActivityFilterExpression (Data type)
Element name | Data type | Description |
---|---|---|
field | UserActivityFilter | A filter expression definition for one particular attribute field. |
UserActivitySortOrder (Data type)
UserActivityList (Data type)
Example
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:adm="http://www.vasco.com/IdentikeyServer/IdentikeyTypes/Administration"> <soapenv:Header/> <soapenv:Body> <adm:userActivityQueryRequest> <sessionID>bbhDR7=mI90R+Q1Kr_??~9IesbmtnVyQ</sessionID> <options> <rowOffset>0</rowOffset> <rowCount>100</rowCount> <countOnly>false</countOnly> <filter> <field name="clientType"> <isNotNull/> </field> </filter> <sortOrder name="timestamp" order="ASC"/> </options> <user> <userID>jdoe</userID> <domain>master</domain> </user> </adm:userActivityQueryRequest> </soapenv:Body> </soapenv:Envelope>
Requirements
Required administrative privileges:
- View Recent User Activity
Additional references
For more information about accepted recent user activities, refer to the OneSpan Authentication Server Product Guide, Section "User Dashboard".