Version: 202607
Get order risk record
GET/openapi/2026-07/orders/:order_id/risks/:id
Retrieves a single risk record on the order by its id, including risk level, detail reasons, custom properties, and create/update times.
Request
Path Parameters
order_id stringrequired
Order ID
id stringrequired
Order risk record ID
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
low: low riskmedium: medium riskhigh: high risk
codestring
error code
messagestring
error message
data object
risk object
The order risk record
idstring
Order risk record ID
order_idstring
Identifier of the order this risk record is associated with
levelstring
Risk level of the order:
detailsstring[]
List of risk detail reasons explaining why the risk was flagged
properties object
Custom properties associated with the order risk, as key-value pairs
property name*string
created_atstring
Time when the risk record was created (e.g., 2018-11-02T12:30:10Z)
updated_atstring
Time when the risk record was last updated (e.g., 2018-11-02T12:30:10Z)
{
"code": "string",
"message": "string",
"data": {
"risk": {
"id": "string",
"order_id": "string",
"level": "string",
"details": [
"string"
],
"properties": {},
"created_at": "string",
"updated_at": "string"
}
}
}