Get rules data for last session
get
/customercare/v1/{customerId}/session
Return all the rules executed for the given user for past session. Provides basic information of what rules got triggered, doesn't provide complete hierarchy information. Rules execution data is persisted asynchrously and may not be available immediately.
Request
Path Parameters
-
customerId(required): string
It is the uniqueUserId of the user. Details can be found in the user preferences API.
There's no request body for this operation.
Back to TopResponse
Supported Media Types
- application/xml
- application/json
200 Response
Success
Root Schema : RuleResponse
Type:
Show Source
object
-
requestId: string
Request ID for logging/tracking purposes
-
runtimeData: object
runtimeData
Additional Properties Allowed: RuntimeDataListMap of runtime IDs to runtime data lists
-
statusResponse: object
StatusResponse
Status information for API call
Nested Schema : runtimeData
Type:
object
Additional Properties Allowed
Show Source
Map of runtime IDs to runtime data lists
Nested Schema : StatusResponse
Type:
object
Status information for API call
Show Source
-
responseCode: string
status code of the request
-
responseMessage: string
response message related to the response code if needed.
-
sessionId: string
session id of the authentcation.
-
status: boolean
authentication update request status
404 Response
Customer ID not found
Examples
The following example shows a sample request and response for obtaining all the rules executed for the user in the previous session.
cURL Command to Obtain Rules Data for the Last Session in JSON Format
curl --location --request GET '<RISKCC>/risk-cc/customercare/v1/{customerId}/session' \ --header 'Content-Type: application/json' \ --header 'Authorization: Basic <Base64Encoded(<username>:<password>)>'
Sample Response in JSON Format
{ "requestId": "6f4372b9-187c-4a04-995e-f54bb46d2e56", "runtimeData": { "2": [ { "actionList": [ "Challenge", "ChallengeEmail" ], "alertList": [ { "id": 4, "level": "Medium", "message": "IP is not from a mobile connection and has not been used in thirty days and more than one user has logged in from it within twenty four hours.", "type": "Investigation" }, { "id": 10001, "level": "Low", "message": "Assertion Level is less than or equal to 50", "type": "Information" }, { "id": 10001, "level": "Low", "message": "Assertion Level is less than or equal to 50", "type": "Information" } ], "finalScore": 900, "ruleList": [ { "modelId": 6, "modelName": "OAAM Challenge Policy", "ruleId": 10001, "ruleName": "Assertion Level <=50" } ], "runtime": 2, "runtimeName": "postauth" } ] }, "statusResponse": { "responseCode": "0", "responseMessage": "", "status": true } }
cURL Command to Obtain Rules Data for the Last Session in XML Format
curl --location --request GET '<RISKCC>/risk-cc/customercare/v1/{customerId}/session' \ --header 'Content-Type: application/xml' \ --header 'Accept: application/xml' \ --header 'Authorization: Basic <Base64Encoded(<username>:<password>)>'
Sample Response in XML Format
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><RuleResponse> <requestId>6f4372b9-187c-4a04-995e-f54bb46d2e56</requestId> <runtimeData> <2> <actionList>Challenge</actionList> <actionList>ChallengeEmail</actionList> <alertList> <id>4</id> <level>Medium</level> <message>IP is not from a mobile connection and has not been used in thirty days and more than one user has logged in from it within twenty four hours.</message> <type>Investigation</type> </alertList> <alertList> <id>10001</id> <level>Low</level> <message>Assertion Level is less than or equal to 50</message> <type>Information</type> </alertList> <alertList> <id>10001</id> <level>Low</level> <message>Assertion Level is less than or equal to 50</message> <type>Information</type> </alertList> <finalScore>900</finalScore> <ruleList> <modelId>6</modelId> <modelName>OAAM Challenge Policy</modelName> <ruleId>10001</ruleId> <ruleName>Assertion Level <=50</ruleName> </ruleList> <runtime>2</runtime> <runtimeName>postauth</runtimeName> </2> </runtimeData> <statusResponse> <responseCode>0</responseCode> <responseMessage></responseMessage> <status>true</status> </statusResponse> </RuleResponse>