# Retrieve a Previously Scored Transaction by Risk Uuid Perform a request to retrieve a previously scored transaction by risk uuid. This endpoint uses a valid Basic Authentication username and password for authentication. Endpoint: GET /score/{uuid} Version: 2025.04.03.0 Security: basicAuth ## Path parameters: - `uuid` (string, required) ## Response 200 fields (*/*): - `success` (boolean) Whether the request was successful Example: true - `uuid` (string) Unique ID for request which is generated by risk service Example: "e4ef2a10-20b1-4caa-8db0-60b2a3d68070" - `code` (string) The code if there is an error, such as 900 for internal error Example: "900" - `messages` (array) Array[object], messages if there is any error - `messages.keyword` (string) Keyword related to the message Example: "Internal Error" - `messages.message` (string) Content of the message such as Internal Error Example: "Internal Server Error" - `messages.dataPath` (string) Path to the data file Example: "payment" - `data` (object) - `data.id` (string) UUID of the request Example: "e4ef2a10-20b1-4caa-8db0-60b2a3d68070" - `data.riskScore` (integer) Risk score, on a scale from 0 (low risk) to 100 (high risk) Example: 50 - `data.mostSevereAction` (string) Applied action, according to risk assessment Example: "cancelled" - `data.tags` (array) - `data.tags.id` (string) Unique ID of your tag - `data.tags.action` (string) Action name related to rule Example: "cancelled" - `data.tags.name` (string) Name of your tag Example: "Rule Cancelled" - `data.tags.type` (string) Action that you would like your tag to have associated. 'label' will simply tag your order, while 'queue' will cause the order to be placed in a queue for later retrieval and review Example: "rule" - `data.tags.state` (string) Rule set Example: "Global Rule Set"