Version: 202506
List risk assessments
GET/openapi/2025-06/orders/:order_id/risks
Returns the platform's automated fraud-detection assessment labels and detail items for the specified order. Use this to surface system-generated risk signals to merchants before they decide to fulfill or cancel the order.
Request
Path Parameters
order_id stringrequired
Order ID
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
codestring
error code
messagestring
error message
data object
assessmentsstring[]
List of general risk assessment labels for the order
infos object[]
List of detailed risk assessment information items for the order
titlestring
The title or name of the risk category
describestring
Detailed description of the risk, including the risk level and context
{
"code": "string",
"message": "string",
"data": {
"assessments": [
"string"
],
"infos": [
{
"title": "string",
"describe": "string"
}
]
}
}