{
	"info": {
		"_postman_id": "8669f36c-c04f-4dd5-ac2b-977009c0f022",
		"name": "Oracle Adaptive Risk Management REST API",
		"description": "This API isfor user's device handling including device fingerprint management, as well as authentication and transaction status.\n\nFor details on how to use this collection, see https://docs.oracle.com/en/middleware/idm/advanced-authentication/tutorial-custom-activity",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "7144279"
	},
	"item": [
		{
			"name": "session/v1",
			"item": [
				{
					"name": "{request Id}",
					"item": [
						{
							"name": "Create new session for the user authentication request",
							"request": {
								"auth": {
									"type": "basic",
									"basic": [
										{
											"key": "password",
											"value": "{{riskapikey}}",
											"type": "string"
										},
										{
											"key": "username",
											"value": "{{RELEASENAME}}-risk",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"user\": {\n        \"loginName\": \"testuser\",\n        \"groupName\": \"default\",\n        \"userId\": \"testuser\"\n    },\n    \"ip\": {\n        \"remoteIP\": \"10.175.171.219\",\n        \"remoteHost\": \"TESTCLIENT\",\n        \"proxyIP\": \"10.175.171.219\"\n    },\n    \"fpList\": [\n        {\n            \"cookie\": \"\",\n            \"fingerprint\": \"accept-encoding#^#gzip, deflate, br#^#accept-language#^#en-GB,en;q=0.9#^#userAgent#^#Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)Chrome/112.0.0.0 Safari/537.36\",\n            \"cookieType\": \"1\"\n        },\n        {\n            \"cookie\": \"\",\n            \"fingerprint\": \"acn#^#Mozilla#^#ah#^#1040#^#an#^#Netscape#^#av#^#5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36#^#aw#^#1920#^#cd#^#24#^#ce#^#true#^#gl#^#51.4108518,-0.8705637,16.634#^#h#^#1080#^#je#^#false#^#l#^#en-GB#^#mt#^#application/pdf,text/pdf#^#o#^#true#^#p#^#Win32#^#pd#^#24#^#pl#^#PDF Viewer,Chrome PDF Viewer,Chromium PDF Viewer,Microsoft Edge PDF Viewer,WebKit built-in PDF#^#prod#^#Gecko#^#prods#^#20030107#^#tzo#^#0#^#ua#^#Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.6#^#w#^#1920\",\n            \"cookieType\": \"4\"\n        }\n    ],\n    \"sessionData\": {\n        \"authenticationStatus\": \"999\",\n        \"registerDevice\": \"false\",\n        \"clientApplication\": \"OAA\",\n        \"clientType\": \"0\",\n        \"clientVersion\": \"12.2.1.4.0\",\n        \"analyzePatterns\": \"true\"\n    }\n}"
								},
								"url": {
									"raw": "{{oaa-risk}}/risk-analyzer/session/v1",
									"host": [
										"{{oaa-risk}}"
									],
									"path": [
										"risk-analyzer",
										"session",
										"v1"
									]
								},
								"description": "Used to create an OAA session.\n\nThis API should be used only once for creating the OAA session. If it is used more than one time with the same request number error will be returned.\n\nIn this example we are requesting to create a session for \"testuser\" in the \"default\" group.\n\nUnder \"ip\" the IP address and host of the client making the request is sent, along with the IP of the proxy server.\n\nIn the fpList, as this is the first time we are connecting and there is no cookie we are leaving cookie blank.\n\nFor the fingerprint, for cookieType:1 (which is a browser cookie, we are setting the fingerprint information as per the following SQL statement against the OAA database schema: \"select FPRINT_TYPE, DATA_VALUE from v_fprints where FPRINT_TYPE=1\".\n\nFor the fingerprint, for cookieType:4 (which is a digital cookie, we are setting the fingerprint information as per \"select FPRINT_TYPE, DATA_VALUE from v_fprints where FPRINT_TYPE=4\" \n\nIn \"sessionData\", \"authenticationStatus\": \"999\" is set because any new session is always at a pending status (999) until all rules are processed as the authentication is made. \n\"clientApplication\", and \"clientVersion\" are user defined and do not have any impact other than to collect information you may need about the application.\n\"clientType\": \"0\", is the default clientType for a new session.\n\"analyzePatterns\":\"true\" indicates that autolearning should be used.\n\nIn the response, the following is set:\n\"digitalCookie\" - the digital cookie for the session.\n\"secureCookie\" - the secure cookie for the session.\n\"requestId\" the requestId for the session. This is to be used in \"Create new transactions\" later in the postman collection.\n\"responseCode\":\"0\" means the authentication was successful.\n\"sessionId\", the sessionId of the session, which is the same as the reqeuestId."
							},
							"response": [
								{
									"name": "Example Success Response - Create new session for the user authentication request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n    \"user\": {\n        \"loginName\": \"testuser\",\n        \"groupName\": \"default\",\n        \"userId\": \"testuser\"\n    },\n    \"ip\": {\n        \"remoteIP\": \"10.175.171.219\",\n        \"remoteHost\": \"TESTCLIENT\",\n        \"proxyIP\": \"10.175.171.219\"\n    },\n    \"fpList\": [\n        {\n            \"cookie\": \"\",\n            \"fingerprint\": \"accept-encoding#^#gzip, deflate, br#^#accept-language#^#en-GB,en;q=0.9#^#userAgent#^#Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)Chrome/112.0.0.0 Safari/537.36\",\n            \"cookieType\": \"1\"\n        },\n        {\n            \"cookie\": \"\",\n            \"fingerprint\": \"acn#^#Mozilla#^#ah#^#1040#^#an#^#Netscape#^#av#^#5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36#^#aw#^#1920#^#cd#^#24#^#ce#^#true#^#gl#^#51.4108518,-0.8705637,16.634#^#h#^#1080#^#je#^#false#^#l#^#en-GB#^#mt#^#application/pdf,text/pdf#^#o#^#true#^#p#^#Win32#^#pd#^#24#^#pl#^#PDF Viewer,Chrome PDF Viewer,Chromium PDF Viewer,Microsoft Edge PDF Viewer,WebKit built-in PDF#^#prod#^#Gecko#^#prods#^#20030107#^#tzo#^#0#^#ua#^#Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.6#^#w#^#1920\",\n            \"cookieType\": \"4\"\n        }\n    ],\n    \"sessionData\": {\n        \"authenticationStatus\": \"999\",\n        \"registerDevice\": \"false\",\n        \"clientApplication\": \"OAA\",\n        \"clientType\": \"0\",\n        \"clientVersion\": \"12.2.1.4.0\",\n        \"analyzePatterns\": \"true\"\n    }\n}"
										},
										"url": {
											"raw": "{{oaa-risk}}/risk-analyzer/session/v1",
											"host": [
												"{{oaa-risk}}"
											],
											"path": [
												"risk-analyzer",
												"session",
												"v1"
											]
										}
									},
									"status": "Created",
									"code": 201,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Date",
											"value": "Tue, 4 Jul 2023 11:00:27 GMT"
										},
										{
											"key": "transfer-encoding",
											"value": "chunked"
										},
										{
											"key": "connection",
											"value": "keep-alive"
										}
									],
									"cookie": [],
									"body": "{\n    \"cookieSet\": {\n        \"digitalCookie\": \"7f3cae97-1e16-4b98-937b-3aa89a0eb721\",\n        \"secureCookie\": \"2435bb9e-9d91-46ec-a4df-9a168e149cb8\",\n        \"requestId\": \"96eb744b-b84e-4c13-8b78-06b64ad81d94\"\n    },\n    \"statusResponse\": {\n        \"responseCode\": \"0\",\n        \"responseMessage\": \"\",\n        \"status\": true,\n        \"sessionId\": \"96eb744b-b84e-4c13-8b78-06b64ad81d94\"\n    }\n}"
								}
							]
						},
						{
							"name": "Fetch the details of an existing session",
							"request": {
								"auth": {
									"type": "basic",
									"basic": [
										{
											"key": "password",
											"value": "{{riskapikey}}",
											"type": "string"
										},
										{
											"key": "username",
											"value": "{{RELEASENAME}}-risk",
											"type": "string"
										}
									]
								},
								"method": "PUT",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"requestId\":\"96eb744b-b84e-4c13-8b78-06b64ad81d94\"\n}"
								},
								"url": {
									"raw": "{{oaa-risk}}/risk-analyzer/session/v1/fetchsessionsecurely",
									"host": [
										"{{oaa-risk}}"
									],
									"path": [
										"risk-analyzer",
										"session",
										"v1",
										"fetchsessionsecurely"
									]
								},
								"description": "Fetch User Session Details.\n\nFetch details of the user session by passing the requestId for the user session.\n\nIn this example, the requestId used is the one returned in the \"Create new session for the user authentication\" example."
							},
							"response": [
								{
									"name": "Example Success Response - Fetch session details",
									"originalRequest": {
										"method": "PUT",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n    \"requestId\":\"96eb744b-b84e-4c13-8b78-06b64ad81d94\"\n}"
										},
										"url": {
											"raw": "{{oaa-risk}}/risk-analyzer/session/v1/fetchsessionsecurely",
											"host": [
												"{{oaa-risk}}"
											],
											"path": [
												"risk-analyzer",
												"session",
												"v1",
												"fetchsessionsecurely"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Date",
											"value": "Thu, 3 Aug 2023 09:14:54 GMT"
										},
										{
											"key": "connection",
											"value": "keep-alive"
										},
										{
											"key": "content-length",
											"value": "146"
										}
									],
									"cookie": [],
									"body": "{\n    \"status\": true,\n    \"sessionId\": \"96eb744b-b84e-4c13-8b78-06b64ad81d94\",\n    \"userData\": {\n        \"loginName\": \"testuser\",\n        \"groupName\": \"default\",\n        \"userId\": \"testuser\"\n    }\n}"
								}
							]
						},
						{
							"name": "Update details of an existing session",
							"request": {
								"auth": {
									"type": "basic",
									"basic": [
										{
											"key": "password",
											"value": "{{riskapikey}}",
											"type": "string"
										},
										{
											"key": "username",
											"value": "{{RELEASENAME}}-risk",
											"type": "string"
										}
									]
								},
								"method": "PUT",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n        \"requestId\":\"96eb744b-b84e-4c13-8b78-06b64ad81d94\",\n        \"authenticationStatus\": \"999\",\n        \"registerDevice\": \"true\",\n        \"clientApplication\": \"OAA Update\",\n        \"clientType\": \"0\",\n        \"clientVersion\": \"12.2.1.4.2\",\n        \"analyzePatterns\": \"true\"\n}"
								},
								"url": {
									"raw": "{{oaa-risk}}/risk-analyzer/session/v1/updatesessionsecurely",
									"host": [
										"{{oaa-risk}}"
									],
									"path": [
										"risk-analyzer",
										"session",
										"v1",
										"updatesessionsecurely"
									]
								},
								"description": "Update Details of an Existing Session.\n\nUpdate details of an existing user session.\n\nIn this example, the requestId used is the one returned in the \"Create new session for the user authentication\" example."
							},
							"response": [
								{
									"name": "Example Success Response - Update details of an existing session",
									"originalRequest": {
										"method": "PUT",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n        \"requestId\":\"96eb744b-b84e-4c13-8b78-06b64ad81d94\",\n        \"authenticationStatus\": \"999\",\n        \"registerDevice\": \"true\",\n        \"clientApplication\": \"OAA Update\",\n        \"clientType\": \"0\",\n        \"clientVersion\": \"12.2.1.4.2\",\n        \"analyzePatterns\": \"true\"\n}"
										},
										"url": {
											"raw": "{{oaa-risk}}/risk-analyzer/session/v1/updatesessionsecurely",
											"host": [
												"{{oaa-risk}}"
											],
											"path": [
												"risk-analyzer",
												"session",
												"v1",
												"updatesessionsecurely"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Date",
											"value": "Thu, 3 Aug 2023 11:09:41 GMT"
										},
										{
											"key": "connection",
											"value": "keep-alive"
										},
										{
											"key": "content-length",
											"value": "106"
										}
									],
									"cookie": [],
									"body": "{\n    \"responseCode\": \"0\",\n    \"responseMessage\": \"\",\n    \"status\": true,\n    \"sessionId\": \"96eb744b-b84e-4c13-8b78-06b64ad81d94\"\n}"
								}
							]
						}
					]
				}
			]
		},
		{
			"name": "transaction/v1",
			"item": [
				{
					"name": "Create new transactions",
					"request": {
						"auth": {
							"type": "basic",
							"basic": [
								{
									"key": "password",
									"value": "{{riskapikey}}",
									"type": "string"
								},
								{
									"key": "username",
									"value": "{{RELEASENAME}}-risk",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "[\n    {\n        \"requestId\": \"96eb744b-b84e-4c13-8b78-06b64ad81d94\",\n        \"transactionKey\": \"Check Credit Card Activity Rule\",\n        \"status\": \"1\",\n        \"contextMap\": [\n            {\n                \"key\": \"transaction.price\",\n                \"value\": \"700\"\n            }\n        ]\n    }\n]"
						},
						"url": {
							"raw": "{{oaa-risk}}/risk-analyzer/transaction/v1",
							"host": [
								"{{oaa-risk}}"
							],
							"path": [
								"risk-analyzer",
								"transaction",
								"v1"
							]
						},
						"description": "Create new transactions.\n\nIn this example a transaction is created for the requestId returned in the \"Create new session for user authentication\".\n\nFor more details about the usecase in this example, see: https://docs.oracle.com/en/middleware/idm/advanced-authentication/tutorial-custom-activity"
					},
					"response": [
						{
							"name": "Example Success Response - Create new transactions",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "[\n    {\n        \"requestId\": \"96eb744b-b84e-4c13-8b78-06b64ad81d94\",\n        \"transactionKey\": \"Credit Card Activity\",\n        \"status\": \"1\",\n        \"contextMap\": [\n            {\n                \"key\": \"transaction.price\",\n                \"value\": \"700\"\n            }\n        ]\n    }\n]"
								},
								"url": {
									"raw": "{{oaa-risk}}/risk-analyzer/transaction/v1",
									"host": [
										"{{oaa-risk}}"
									],
									"path": [
										"risk-analyzer",
										"transaction",
										"v1"
									]
								}
							},
							"status": "Created",
							"code": 201,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Date",
									"value": "Wed, 21 Jun 2023 10:32:18 GMT"
								},
								{
									"key": "transfer-encoding",
									"value": "chunked"
								},
								{
									"key": "connection",
									"value": "keep-alive"
								}
							],
							"cookie": [],
							"body": "[\n    {\n        \"responseCode\": \"0\",\n        \"responseMessage\": \"\",\n        \"status\": true,\n        \"transactionId\": 5\n    }\n]"
						}
					]
				},
				{
					"name": "Process rule",
					"request": {
						"auth": {
							"type": "basic",
							"basic": [
								{
									"key": "password",
									"value": "{{riskapikey}}",
									"type": "string"
								},
								{
									"key": "username",
									"value": "{{RELEASENAME}}-risk",
									"type": "string"
								}
							]
						},
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"requestId\":\"96eb744b-b84e-4c13-8b78-06b64ad81d94\",\n    \"checkpointList\": [\n        1600\n    ],\n    \"transactionId\": 8,\n    \"contextMap\": [\n        {\n            \"key\": \"Dummy\",\n            \"value\": \"Value\"\n        }\n    ]\n    }"
						},
						"url": {
							"raw": "{{oaa-risk}}/risk-analyzer/risk/v1/processrulessecurely",
							"host": [
								"{{oaa-risk}}"
							],
							"path": [
								"risk-analyzer",
								"risk",
								"v1",
								"processrulessecurely"
							]
						},
						"description": "Process rules for a given requestId and transaction.\n\nIn this example we are processing a rule for the requestId and transactionId created in the previous create session and create transaction examples.\n\nIn the example success response, one shows Allow, and the other is Block."
					},
					"response": [
						{
							"name": "Example Success Response - Allow",
							"originalRequest": {
								"method": "PUT",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"checkpointList\": [\n        10100\n    ],\n    \"transactionId\": 1,\n    \"contextMap\": [\n        {\n            \"key\": \"Dummy\",\n            \"value\": \"Value\"\n        }\n    ]\n    }\n}"
								},
								"url": {
									"raw": "{{oaa-risk}}/risk-analyzer/risk/v1/96eb744b-b84e-4c13-8b78-06b64ad81d94",
									"host": [
										"{{oaa-risk}}"
									],
									"path": [
										"risk-analyzer",
										"risk",
										"v1",
										"96eb744b-b84e-4c13-8b78-06b64ad81d94"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Date",
									"value": "Wed, 21 Jun 2023 10:45:42 GMT"
								},
								{
									"key": "connection",
									"value": "keep-alive"
								},
								{
									"key": "content-length",
									"value": "204"
								}
							],
							"cookie": [],
							"body": "{\n    \"allActions\": [],\n    \"result\": \"\",\n    \"score\": 0,\n    \"transactionLogId\": 5,\n    \"resultMap\": [],\n    \"alertMessageList\": [],\n    \"runtimeType\": 1600,\n    \"deviceId\": 85,\n    \"statusResponse\": {\n        \"responseCode\": \"0\",\n        \"responseMessage\": \"\",\n        \"status\": true\n    }\n}"
						},
						{
							"name": "Example Success Response - Block",
							"originalRequest": {
								"method": "PUT",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"checkpointList\": [\n        10100\n    ],\n    \"transactionId\": 4,\n    \"contextMap\": [\n        {\n            \"key\": \"Dummy\",\n            \"value\": \"lastTransactionId=4\"\n        }\n    ]\n    }\n}\n"
								},
								"url": {
									"raw": "{{oaa-risk}}/risk-analyzer/risk/v1/a15c45a0-86bf-48ab-8fa2-d9f74169f5e1",
									"host": [
										"{{oaa-risk}}"
									],
									"path": [
										"risk-analyzer",
										"risk",
										"v1",
										"a15c45a0-86bf-48ab-8fa2-d9f74169f5e1"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Date",
									"value": "Mon, 31 Jul 2023 11:36:14 GMT"
								},
								{
									"key": "connection",
									"value": "keep-alive"
								},
								{
									"key": "content-length",
									"value": "358"
								}
							],
							"cookie": [],
							"body": "{\n    \"allActions\": [\n        \"Block\"\n    ],\n    \"result\": \"Block\",\n    \"score\": 1000,\n    \"transactionLogId\": 6,\n    \"resultMap\": [],\n    \"alertMessageList\": [\n        \"sessActionMapId=279;loginId=testuser;userId=testuser;deviceId=85;ip=10.175.171.219;lastTransactionId=6;msg=Purchased Item Exceeds Limit\"\n    ],\n    \"runtimeType\": 1600,\n    \"deviceId\": 85,\n    \"statusResponse\": {\n        \"responseCode\": \"0\",\n        \"responseMessage\": \"\",\n        \"status\": true\n    }\n}"
						}
					]
				},
				{
					"name": "Update transactions",
					"request": {
						"auth": {
							"type": "basic",
							"basic": [
								{
									"key": "password",
									"value": "{{riskapikey}}",
									"type": "string"
								},
								{
									"key": "username",
									"value": "{{RELEASENAME}}-risk",
									"type": "string"
								}
							]
						},
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "[\n    {\n        \"requestId\": \"4fb04854-cd02-492d-ab87-164a87b7d06e\",\n        \"transactionId\": \"7\",\n        \"transactionKey\": \"Credit Card Activity\",\n        \"status\":1,\n        \"contextMap\": [\n            {\n                \"key\": \"transaction.price\",\n                \"value\": \"400\"\n            }\n        ]\n    }\n]"
						},
						"url": {
							"raw": "{{oaa-risk}}/risk-analyzer/transaction/v1",
							"host": [
								"{{oaa-risk}}"
							],
							"path": [
								"risk-analyzer",
								"transaction",
								"v1"
							]
						},
						"description": "Update transactions\n\nUpdate details of a transaction. In this example we are updating the value of transaction.price to 400.\n\nStatus=1 means success.\n\nStatus must match one of the config values from tracker.transaction.status.enum. To check the possible values of the atracker.transaction.status.enum, use the config property REST API operation GET with URL <PolicyURL>/policy/config/property/v1?propertyName=tracker.transaction.status.enum. \n\nThe possible values are:\n\ntracker.transaction.status.enum.success=1\ntracker.transaction.status.enum.success.name=Success\n\n\ntracker.transaction.status.enum.block=2\ntracker.transaction.status.enum.block.name=Block\n\n\ntracker.transaction.status.enum.reject=3\ntracker.transaction.status.enum.reject.name=Reject\n\ntracker.transaction.status.enum.wrong_answer=4\ntracker.transaction.status.enum.wrong_answer.name=Wrong Answer\n\ntracker.transaction.status.enum.pending=99\ntracker.transaction.status.enum.pending.name=Pending"
					},
					"response": [
						{
							"name": "Example Success Response - Update transactions",
							"originalRequest": {
								"method": "PUT",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "[\n    {\n        \"requestId\": \"4fb04854-cd02-492d-ab87-164a87b7d06e\",\n        \"transactionId\": \"7\",\n        \"transactionKey\": \"Credit Card Activity\",\n        \"status\":1,\n        \"contextMap\": [\n            {\n                \"key\": \"transaction.price\",\n                \"value\": \"400\"\n            }\n        ]\n    }\n]"
								},
								"url": {
									"raw": "{{oaa-risk}}/risk-analyzer/transaction/v1",
									"host": [
										"{{oaa-risk}}"
									],
									"path": [
										"risk-analyzer",
										"transaction",
										"v1"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Date",
									"value": "Tue, 8 Aug 2023 09:46:42 GMT"
								},
								{
									"key": "connection",
									"value": "keep-alive"
								},
								{
									"key": "content-length",
									"value": "75"
								}
							],
							"cookie": [],
							"body": "[\n    {\n        \"responseCode\": \"0\",\n        \"responseMessage\": \"\",\n        \"status\": true,\n        \"transactionId\": 7\n    }\n]"
						}
					]
				}
			]
		},
		{
			"name": "user-activities",
			"item": [
				{
					"name": "Gets user activities",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "basic",
							"basic": [
								{
									"key": "password",
									"value": "{{oaapolicyapikey}}",
									"type": "string"
								},
								{
									"key": "username",
									"value": "{{RELEASENAME}}-oaa-policy",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{oaa-policy}}/policy/risk/v1/user-activities",
							"host": [
								"{{oaa-policy}}"
							],
							"path": [
								"policy",
								"risk",
								"v1",
								"user-activities"
							]
						},
						"description": "Gets details about custom user activities."
					},
					"response": [
						{
							"name": "Example Success Response - Gets user activities",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{oaa-policy}}/policy/risk/v1/user-activities",
									"host": [
										"{{oaa-policy}}"
									],
									"path": [
										"policy",
										"risk",
										"v1",
										"user-activities"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Date",
									"value": "Wed, 21 Jun 2023 10:10:10 GMT"
								},
								{
									"key": "connection",
									"value": "keep-alive"
								},
								{
									"key": "content-length",
									"value": "438"
								}
							],
							"cookie": [],
							"body": "{\n    \"status\": \"200\",\n    \"message\": \"User Activity information.\",\n    \"elements\": [\n        {\n            \"enumId\": \"profile.type.enum\",\n            \"name\": \"User Authentication\",\n            \"strValue\": \"postauth\",\n            \"elementId\": \"profile.type.enum.postauth\",\n            \"value\": 2,\n            \"propertyNameList\": [\n                \"ruleTypes\",\n                \"listTypes\",\n                \"isPostAuth\"\n            ]\n        },\n        {\n            \"enumId\": \"profile.type.enum\",\n            \"name\": \"Credit Card Activity\",\n            \"strValue\": \"1\",\n            \"elementId\": \"profile.type.enum.1\",\n            \"value\": 1600,\n            \"propertyNameList\": [\n                \"activity\",\n                \"isPostAuth\",\n                \"enabled\"\n            ]\n        }\n    ]\n}"
						}
					]
				}
			]
		}
	],
	"auth": {
		"type": "basic",
		"basic": [
			{
				"key": "username",
				"value": "<Basic Auth Username>",
				"type": "string"
			},
			{
				"key": "password",
				"value": "<Basic Auth Password>",
				"type": "string"
			}
		]
	},
	"variable": [
		{
			"key": "baseUrl",
			"value": "https://oaainstall-host/risk-analyzer",
			"type": "string"
		}
	]
}