cancel
Showing results for 
Search instead for 
Did you mean: 

How to add new product to existing category programatically

Former Member
0 Kudos

Hello Experts,

I want to develop interface for user which will perform Create new ,Read, Update, Delete operations on product programmatically. How can add a new product to existing category, update, delete product programmatically.

any pointers to resolve this issue is really appreciated

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

You develop a Web Service v1 / v1 / products


HTTP Method: PUT


the Body is: String body Content type : application / xml;.

Body content: the XML to send (here's an example)

<Product> <code> xxxxxx </ code> <name> xxxxxx </ name> <action> add / update or delete </ action> <category> xxxxxx </ category> ........