HI Guys ,
i have created an order with status "open" which is reflecting in orders table . i need to close the order after Payment . which demands to make another PUT call with basic payload :-
{
"order": {
"id": "X87MCDE5GWDM9"
},
"state":"close" /// or lock
}
as per the above payload the order id itself is the URI . But on PUT call leading to an error
{
"message": "Order ID in body does not match URI"
}
can any one help me to find the URI (Uniform resource Identifier) ?
Regrads , Prasad.