Get rules data
get
/customercare/v1/rules
Return all the rules excuted for the given session ID. 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
Query Parameters
-
sessionId(required): string
Session ID
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
400 Response
Invalid input
404 Response
Session ID not found
Examples
The following example shows a sample request and response for returning all the rules executed for the specified session ID.
cURL Command to Get Rules Data in JSON Format
curl --location --request DELETE '<RISKCC>/risk-cc/customercare/v1/rules?sessionId=0cf1f2d3-63fe-4fda-b593-d06fafbcd0e1' \ --header 'Content-Type: application/json' \ --header 'Authorization: Basic <Base64Encoded(<username>:<password>)>'
Sample Response in JSON Format
{ "requestId": "0cf1f2d3-63fe-4fda-b593-d06fafbcd0e1", "runtimeData": { "400": [ { "actionList": [ "create_new", "update_cookie_state" ], "alertList": [], "finalScore": 0, "ruleList": [], "runtime": 400, "runtimeName": "deviceid" } ] }, "statusResponse": { "responseCode": "0", "responseMessage": "", "status": true } }
cURL Command to Get Rules Data in XML Format
curl --location --request PUT '<RISKCC>/risk-cc/customercare/v1/rules?sessionId=0cf1f2d3-63fe-4fda-b593-d06fafbcd0e1' \ --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>f50ad542-832f-4532-ab3b-a2f4bc103b86</requestId> <runtimeData> <entry> <key>400</key> <value> <RuntimeData> <runtime>400</runtime> <runtimeName>deviceid</runtimeName> <finalScore>0</finalScore> <actionList>create_new</actionList> <actionList>update_cookie_state</actionList> </RuntimeData> </value> </entry> </runtimeData> <statusResponse> <responseCode>0</responseCode> <responseMessage></responseMessage> <status>true</status> </statusResponse> </RuleResponse>