Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
I just don't get this! Apple store has iPhone 6 SG, 64gb available for pick up Best Buy has them in store. Mine is set to be delivered 10/17.

Best Buy can not do Biz accounts, I wonder if Apple Store can?

This is really a lot of BS.
 
For those of thinking to buy at the Apple Store , you should buy online and pick up in store as I did with mine , you obviously need to cancel your Verizon one first . You do this because someone else is most likely doing that as you drive there, without buying first.

Also my phone showed up after 6pm in the system , so they get shipments received at any time .
 
Another note, I have noticed that Apple has been getting stock of 6+ in their Apple stores and in the morning typically have some showing as available, all my visits have been afternoon visits. Looks like Monday I'l be taking a 10am lunch. ;)

I went right at ten to get mine. Like you I decided color didn't matter.
 
For those of thinking to buy at the Apple Store , you should buy online and pick up in store as I did with mine , you obviously need to cancel your Verizon one first . You do this because someone else is most likely doing that as you drive there, without buying first.

Also my phone showed up after 6pm in the system , so they get shipments received at any time .

I took my chances going in person so I could be sure I had one before cancelling my order. They give you a text that us good for the day.
 
Very depressing. Can't complain to much on my part. Tried to order 9/12 I knew if I didn't it wasn't going to be for the good. Out of town in only god knows where. No service no internet. Got stuck with later order date (9/20) so its gonna be be wait. I've figured this out. And some 12ers don't even have there's? I might not see mine til 2015
 
Its sad to see our phones in stock at Apple locations across the country but we're stuck waiting...
 
My sister and her husband ordered through their local Verizon store (the girl they dealt with was NOT good to say the least, they knew more about the plans than she did--like the additional 1GB promo for doing the More Everything plan) on 9/12 probably around 7pm. Ordered a regular 6 16gb in Silver and one in Gold. The gold was supposed to arrive at 9/19 and the silver due on 10/7, but within a few days they were both showing 10/3 for both. They have not gotten any changes to their orders as of yet. Did not receive phones yet and have no updates in their account. They don't want to cancel because they want to do the trade in offer with their 4S's...guess it's still a waiting game!
 
My sister and her husband ordered through their local Verizon store (the girl they dealt with was NOT good to say the least, they knew more about the plans than she did--like the additional 1GB promo for doing the More Everything plan) on 9/12 probably around 7pm. Ordered a regular 6 16gb in Silver and one in Gold. The gold was supposed to arrive at 9/19 and the silver due on 10/7, but within a few days they were both showing 10/3 for both. They have not gotten any changes to their orders as of yet. Did not receive phones yet and have no updates in their account. They don't want to cancel because they want to do the trade in offer with their 4S's...guess it's still a waiting game!

Most I've seen with 10/3 got pushed. They figured this out with contacting and actually talking to someone. Believe 10/3 got a 10/7 push. Bs
 
I won't be surprised when 10/10 comes around and my order still hasn't shipped.

----------

When I use idevicechecker.com I see a lot of sprint iPhone 6s but almost zero verizon.
 
I won't be surprised when 10/10 comes around and my order still hasn't shipped.

Quit speaking the truth!! Ya something's gotta change. Idk who is directing stuff. Most tmobile users already have. Kind if crazy. Guess apple or china has a grudge against verizon and att
 
how to see your Iconic info

Can you tell me what you did? I keep getting page unavailable. I tried the cletis link and still get page unavailable. Thanks.

You have to use a plugin that accesses the routes of the iconic server, and send a post request to the database (ie, you're posting you're confNum and lastName). It's like a Hash (if you know the Ruby programming language), or basically, keys with values. They keys being confNum and lastName, with the value for each being your actual confirmation number and your last name.

You can use something called Postman, an extension you can install in your Chrome browser. Here is the link to it.

Install it. Open it.

Where it says: "Enter request URL here", paste in this link:
https://preorder.verizonwireless.com/iconic/iconic/screens/IconicSearch.do

On the right of where you entered the above link, there will be a drop down of options, I think it is set to GET. Go ahead and change it to POST.

Below that, are 3 clickable buttons: form-data, x-www-form-urlencoded, and raw. Go ahead and click on x-www-form-urlencoded.

Below this, you will see what I had mentioned earlier, fields for Key and Value.

In the first one, put in: confNum for the Key. In the value field, put in your actual confirmation number.

In the Key field below that one, put in lastName for Key. Then put in your last name in the Value field.

Double check everything.

Hit send.

This will load a bunch of code. It's XML. It's ugly. We don't like XML. We like JSON.

Look for the two buttons side by side, one says JSON, the other is XML, which is what it will currently be set at. Go ahead and click on the JSON button. This will make the code much easier for you to read.

And there you go, that's all the info everyone else is seeing, have fun! I hope this helped for those who haven't gotten Iconic to work for them.

I feel like I should be doing a git commit now...heh.
 
You have to use a plugin that accesses the routes of the iconic server, and send a post request to the database (ie, you're posting you're confNum and lastName). It's like a Hash (if you know the Ruby programming language), or basically, keys with values. They keys being confNum and lastName, with the value for each being your actual confirmation number and your last name.

You can use something called Postman, an extension you can install in your Chrome browser. Here is the link to it.

Install it. Open it.

Where it says: "Enter request URL here", paste in this link:
https://preorder.verizonwireless.com/iconic/iconic/screens/IconicSearch.do

On the right of where you entered the above link, there will be a drop down of options, I think it is set to GET. Go ahead and change it to POST.

Below that, are 3 clickable buttons: form-data, x-www-form-urlencoded, and raw. Go ahead and click on x-www-form-urlencoded.

Below this, you will see what I had mentioned earlier, fields for Key and Value.

In the first one, put in: confNum for the Key. In the value field, put in your actual confirmation number.

In the Key field below that one, put in lastName for Key. Then put in your last name in the Value field.

Double check everything.

Hit send.

This will load a bunch of code. It's XML. It's ugly. We don't like XML. We like JSON.

Look for the two buttons side by side, one says JSON, the other is XML, which is what it will currently be set at. Go ahead and click on the JSON button. This will make the code much easier for you to read.

And there you go, that's all the info everyone else is seeing, have fun! I hope this helped for those who haven't gotten Iconic to work for them.

I feel like I should be doing a git commit now...heh.


Thanks. Very good instructions, of course mine is code with error. I believe it is my order that is messed up. Your instructions are excellent. Thanks for your time.
 
Thanks. Very good instructions, of course mine is code with error. I believe it is my order that is messed up. Your instructions are excellent. Thanks for your time.

No worries! Can you explain what you mean by yours is "code with error"?

You weren't just looking at all the XML code were you?
 
Last edited:
Ok last question til I'm done. Will verizon charge my card then ship moments later or has it been multiple day process for folk?

----------

Sosay if apple sends verizon a massive stock. Does verizon then charge or do they know where they are headed before apple even sends to them?
 
No worries! Can you explain what you mean by yours is "code with error"?

You weren't just looking at all the XML code were you?

My problem may be this, when I click on your link and paste it, it looks like this,
http://www.verizonwireless.com/iconic/iconic/screens/iconicsearch.do?null

I also did it again with the preorder. and without the ?null

and with the s after http.

Here is part of my code:
<!DOCTYPE html>
<html
xmlns="http://www.w3.org/1999/xhtml" lang="en-us" xml:lang="en-us">
<head>
<title>Page is unavailable</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta http-equiv="Content-Language" content="en-us" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="robots" content="noindex" />
<script type="text/javascript">
var gomez= {
"gs": new Date().getTime(),
"acctId":'0532A9',
"pgId":document.title,
"grpId":"prod",
"wrate":"0.10"};
 
My problem may be this, when I click on your link and paste it, it looks like this,
http://www.verizonwireless.com/iconic/iconic/screens/iconicsearch.do?null

I also did it again with the preorder. and without the ?null

and with the s after http.

Here is part of my code:
<!DOCTYPE html>
<html
xmlns="http://www.w3.org/1999/xhtml" lang="en-us" xml:lang="en-us">
<head>
<title>Page is unavailable</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta http-equiv="Content-Language" content="en-us" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="robots" content="noindex" />
<script type="text/javascript">
var gomez= {
"gs": new Date().getTime(),
"acctId":'0532A9',
"pgId":document.title,
"grpId":"prod",
"wrate":"0.10"};



hmm that's weird, returning an HTML doc...

https://preorder.verizonwireless.com/iconic/iconic/screens/IconicSearch.do

Using your mouse/trackpad, highlight it, then hit command-c to copy! Do it that way. For some reason, clicking on it to copy doesn't work correctly, as you found out.

That's exactly what I did for mine in the process I described a few posts up...if that doesn't work, I'm not sure!
 
Last edited:
hmm that's weird, returning an HTML doc...

https://preorder.verizonwireless.com/iconic/iconic/screens/IconicSearch.do

Using your mouse/trackpad, highlight it, then hit command-c to copy! Do it that way. For some reason, clicking on it to copy doesn't work correctly, as you found out.

That's exactly what I did for mine in the process I described a few posts up...if that doesn't work, I'm not sure!

So, I got it to paste exactly, now I get this:
{"multipartRequestHandler":null,"appId":0,"confNum":"","servletWrapper":{},"applicationType":"I","orderCluster":"","numOfItems":0,"iconic_ffl_status":0,"iconicExpShipDate":"","prepay":"false","saleType":"","userId":"ICONIC","order_source":"","last4ssn":0,"paymentList":[],"regionId":"P01","lastName":"","orderType":"","error_code":"","orderNum":0,"orderRegion":"","locationCode":"","splitPayment":"N","errMessage":"MATCH_FAILED","paymentListSize":0,"itemDetailsList":[],"iconicStatus":"","regionID":"P01"}

Thanks vtboyarc. I ordered 916, ship date was 10/7, moved to 10/3. Now they tell me it is back to 10/7. Of course they don't know why the system doesn't update.

I am done looking at iconic. I appreciate your time and effort.
 
So, I got it to paste exactly, now I get this:
{"multipartRequestHandler":null,"appId":0,"confNum":"","servletWrapper":{},"applicationType":"I","orderCluster":"","numOfItems":0,"iconic_ffl_status":0,"iconicExpShipDate":"","prepay":"false","saleType":"","userId":"ICONIC","order_source":"","last4ssn":0,"paymentList":[],"regionId":"P01","lastName":"","orderType":"","error_code":"","orderNum":0,"orderRegion":"","locationCode":"","splitPayment":"N","errMessage":"MATCH_FAILED","paymentListSize":0,"itemDetailsList":[],"iconicStatus":"","regionID":"P01"}

Thanks vtboyarc. I ordered 916, ship date was 10/7, moved to 10/3. Now they tell me it is back to 10/7. Of course they don't know why the system doesn't update.

I am done looking at iconic. I appreciate your time and effort.


You didn't quite follow the instructions to the end. You forgot to click on the JSON button. It's working for you now! But you are looking at XML. Go back and click on JSON.
 
So, I got it to paste exactly, now I get this:
{"multipartRequestHandler":null,"appId":0,"confNum":"","servletWrapper":{},"applicationType":"I","orderCluster":"","numOfItems":0,"iconic_ffl_status":0,"iconicExpShipDate":"","prepay":"false","saleType":"","userId":"ICONIC","order_source":"","last4ssn":0,"paymentList":[],"regionId":"P01","lastName":"","orderType":"","error_code":"","orderNum":0,"orderRegion":"","locationCode":"","splitPayment":"N","errMessage":"MATCH_FAILED","paymentListSize":0,"itemDetailsList":[],"iconicStatus":"","regionID":"P01"}

Thanks vtboyarc. I ordered 916, ship date was 10/7, moved to 10/3. Now they tell me it is back to 10/7. Of course they don't know why the system doesn't update.

I am done looking at iconic. I appreciate your time and effort.

I tell myself this daily. I seem to still look. I'm just ready for that email to say I've been charged or shipment had been sent.
 
Well folks, after a couple hours of research, blood, sweat, and tears, I figured out what "orderCluster": "E", means on the iconic status.

I was able to figure it out for mine, with the E. It means that my order was placed under the Edge agreement, which indeed it was.

I'm sure knowing this bit of info, you can all figure yours out as well now!
 
Last edited:
Well folks, after a couple hours of research, blood, sweat, and tears, I figured out what "orderCluster": "E", means on the iconic status.

I was able to figure it out for mine, with the E. It means that my order was placed under the Edge agreement, which indeed it was.

You sure? I have order cluster "M" and I ordered Edge.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.