When I try to update an Order Risk it returns an error.
PUT: https://<store_url>/admin/api/2023-07/orders/<order_id>/risks/<risk_id>.json
Body:
{
"risk":
{
"message": "Test",
"score": 0.00,
"recommendation": "accept",
"cause_cancel": false,
"source": "external",
"display": true
}
}
It returns HTTP Status 409 Conflict
{
"errors": [
"Your app has previously created a risk assessment for this order. Using deprecated OrderRisk against the same object is forbidden."
]
}
The Order Risk I’m trying to update was created by my application. I tried to DELETE this Order Risk and it returned the same error.
I tried to create another order risk for this order and the error was the same.
This error started today 01/15/24
Shopify API Version I’m using is 2023-07
Someone know what is happening and how can I update or create another risk for my order?