Support Forum [ All Topics | New Topic ]

Thread: Get Previous Price List

Dear Sir, 
I wrote a program to retrieve price list everyday and the code I used is something like below:
            Dim URL as string = "https://technet.rapaport.com/HTTP/Prices/CSV2_Round.aspx"
            Dim webRequest As System.Net.WebRequest = System.Net.WebRequest.Create(URL)
            webRequest.Method = "POST"
            webRequest.ContentType = "application/x-www-form-urlencoded"
            Dim reqStream As Stream = webRequest.GetRequestStream()
            Dim postData As String = "username=xxx&password=xxx"
            Dim postArray As Byte() = Encoding.ASCII.GetBytes(postData)
            reqStream.Write(postArray, 0, postArray.Length)
            reqStream.Close()
I can get the most updated price list by using the above code. However, for some reason, I need to get back the price list of some days ago, e.g. price list of 2010/10/31. So is that a way to get  back the previous price list ?
Thanks



>> add a comment
ccl0801
01/13/2011 12:08


2 Replies:

Hi,

We only provide the current price list both on our website and programmatically. If you want price sheets from previous published dates, you will have to contact customer service:
service@diamonds.net

Or find the nearest office:
http://www.diamonds.net/cms/Contact-Us.aspx

I already forwarded this request to them.

Regards,

Leo


>> add a comment
Leo Muller
1/13/2011 2:11:00 AM
Thank you for your reply
I will contact customer service later if I need any past price list


>> add a comment
ccl0801
1/13/2011 3:19:00 AM