Hi,
In the process of implementing a custom Retail Feed for a client using https://technet.rapaport.com/WebServices/RetailFeed/RetailFeed.asmx?wsdl with nusoap
Looking at the sample code the predefined interface has the ability to filter by diamond cut, lab, fluorescence, polish, etc. What are the search keys for these in php? i.e. for the following search array
[code]
$searchparams ["Shape"] = $shape;
$searchparams ["SizeFrom"] = $carat_lower;
$searchparams ["SizeTo"] = $carat_upper;
$searchparams ["ColorFrom"] = $colour;
$searchparams ["ColorTo"] = $colour;
$searchparams ["ClarityFrom"] = $clarity;
$searchparams ["ClarityTo"] = $clarity;
$searchparams ["CutFrom"] = $cut;
$searchparams ["CutTo"] = $cut;
$searchparams ["PriceFrom"] = $price_lower;
$searchparams ["PriceTo"] = $price_upper;
$searchparams ["Page"] = $page;
$searchparams ["PageSize"] = 5;
$searchparams ["DiamondsFound"] = 0;
$info = $client->call ('GetDiamonds', array ('parameters' => $searchparams), '', '', false, true);
[/code]
Also what is the search key for returning matched pairs for earrings? This does not appear to be available in the iframe version.
Ideally would prefer to not download and store all the diamonds
Many Thanks,
Áine