Magento – Bulk add products in Magento using SOAP API V2

apimagento-1.7script

Is there an way such that i can add 100 items in a go through a single API call.Am a .Net developer new to Magento API.Am using Magento SOAP V2.

i am able to create single items.I check the method "catalogProductCreate" and can see that it accepts only one element of "catalogProductCreateEntity" at a time.Can some one please help.

Best Answer

The SOAP V2 API does not allow you to do that.
You can do that in V1 through the method multiCall. This allows you to send an array of calls to be made at once.
Here is a small example. Sorry it's PHP. I don't have one for .NET

$result = $client->multiCall($session, array(
     array('somestuff.method'),
     array('somestuff.method', 'arg1'),
     array('somestuff.method', array('arg1', 'arg2'))
));

Unfortunately the V1 API is ugly and not that developer friendly.