While updating order’s fields, I am unable to update the financial_status of Order by using respective API. When we update the note of order, it worked. So, I want to update the financial_status of Order by using respective API. Kindly help me in this problem.
When I try this call, I get HTTP 200 response but it didn’t update the financial_status.
My request sample :
https://my_development_store/admin/api/2021-10/orders/4107536728217.json?
My json requestbody :
{
“order”: {
“id” : 4107536728217,
“financial_status”: “partially_refunded”
}
}
Thank you in advance.