I tried updating the order status using patch meth...
# suitetalkapi
m
I tried updating the order status using patch method and enum as G. getting 204 response but not seeing any change on the record. the order status for purchase order still remains F(Pending Bill). How do i update the order status? i sent this body in the patch method
Copy code
"orderStatus": {
        "id": "G",
        "refName": "G"
    }
m
You need to actually create a bill from the PO for the status to update
m
@michoel How do i do that via rest?