How to
•
Upload inventory to RapNet
•
Download Rapaport price data
•
List RapNet inventory on my website
•
Upload certificates
•
Integrate the Rapaport Price List
•
Keep inventory on RapNet
•
Code samples
About
RapNet upload
Rapaport Price Lists
RapLink⢠Diamond Feed
TradeLink
RapNet06
Glossary
Community
Support forum
Developer forum
Standards forum
IT professional registration
Rapaport technical advisories
Latest updates
Downloads
RapNet 06
TradeLink
Rapaport online
www.diamonds.net
www.rapnet.com
Related links:
Back to RapNet Inventory Upload
Upload formats, fields, columns and accepted values
Understanding the upload results
Uploading certificate scans
Uploading image files
Uploading 3D files
Sample Codes
There are two ways you can upload lots using HTTP POST.
Sending a CSV formated string. e.g. "StockNumber,Shape,Weight,Color,Clarity\n\rStrok_1.3,Round,2.1,D,VVS1"
Uploading a CSV file
Note:
you will need to authenticate before sending the data.
The CSV formated string or file must be sent using Form HTTP method. All other data can be sent using Form HTTP as well as in the Query.
URL's for programmatical uploads:
String upload:
http://technet.rapaport.com/HTTP/Upload/Upload.aspx?Method=string
File upload:
http://technet.rapaport.com/HTTP/Upload/Upload.aspx?Method=file
Code examples:
Upload lots using HTTP POST/WebClient (C#) and CSV formated string
Upload lots using HTTP POST/WebClient (C#) and CSV file
Upload lots using HTTP POST/WebRequest (C#) and CSV file