I want to create order in magento 1.9 using rest api, but i am unable to find any method to create order using rest api. I can't find any help from the below link : http://devdocs.magento.com/guides/m1x/api/rest/introduction.html
Have any idea?
1 Answer 1
As long as I know it's not possible. Look here: http://devdocs.magento.com/guides/m1x/api/rest/Resources/Orders/sales_orders.html
It says:
HTTP Method: POST /orders
Description: Not implemented.
HTTP Method: PUT /orders
Description: Not implemented.
HTTP Method: DELETE /orders
Description: Not implemented.
You should use SOAP instead:
-
1REST hasn't been completely implemented in Magento 1. So you need to either build it yourself, or use SOAP instead.René Schep– René Schep2019年01月07日 15:19:27 +00:00Commented Jan 7, 2019 at 15:19