Magento 1.9 REST API – How to Create an Order

create-ordermagento-1.9rest api

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?

Best Answer

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:

Related Topic