3/21/22 Build Week Gang

davhalt

Member
First Name
Dave
Joined
Dec 7, 2021
Threads
0
Messages
18
Reaction score
22
Location
Florida
Vehicles
2022 Mach-E AWD
Country flag
Batch 4780
139/302

Star White Premium
999 Modules as of 3/23

...also, just noticed my sticker now says 3/24 (as opposed to the original 3/23)
Sponsored

 
Last edited:

Keikidoc

Member
First Name
Howard
Joined
Mar 23, 2022
Threads
0
Messages
5
Reaction score
5
Location
Blue Springs, MO
Vehicles
Mach E 2022 Premium, eAWD EX battery
Country flag
I'm still not able to open module download. changed to .txt no help. No apps available. Thanks to @mmap for keeping us updated with modules.
 

BaconNerd

Member
Joined
Jan 21, 2022
Threads
0
Messages
19
Reaction score
11
Location
Milwaukee, WI
Vehicles
Explorer Hybrid 22', Mach-E 22'
I've got modules! 973 of them as 3:13 PM CST

980 as of 4:27pm CST

Batch: 004804
132/270
Premium, RWD ER
 
Last edited:

BaconNerd

Member
Joined
Jan 21, 2022
Threads
0
Messages
19
Reaction score
11
Location
Milwaukee, WI
Vehicles
Explorer Hybrid 22', Mach-E 22'
I'm still not able to open module download. changed to .txt no help. No apps available. Thanks to @mmap for keeping us updated with modules.
I don't think you need to download the file, they just populate lower on the page. Then copy it to Excel to count the rows.

Ford Mustang Mach-E 3/21/22 Build Week Gang 1648239388323
 
OP
OP
mmap

mmap

Well-Known Member
Joined
Oct 9, 2021
Threads
5
Messages
199
Reaction score
324
Location
Maryland
Vehicles
2022 MachE Route1
Occupation
Software Guy
Country flag
I got my built email officially at 1:56pm. Estimated delivery window 4/28-5/5. The tracker is still not working for me, but the JSon still tells me "Awaiting Shipment".

I updated the tables on Post #1. One of the dealer Selects I am tracking in batch 004831 got modules... good news for those in that batch!
 


OP
OP
mmap

mmap

Well-Known Member
Joined
Oct 9, 2021
Threads
5
Messages
199
Reaction score
324
Location
Maryland
Vehicles
2022 MachE Route1
Occupation
Software Guy
Country flag
I just checked and I have 1006 modules listed under BCE, Non- under PCM.

MMAP,
What API did you use? Are they REST APIs? Did you use postman. Is this something I could use as well?

Thanks
If you know how to use your browsers Web Developer tools, then you will see the "cvotcheck" request as the first thing after you hit submit on the tracker. Even if the tracker pushes you back to a blank page, the cvotcheck will return some Json including a little bit of status.

Here's the python script I am using which does basically the same thing. I have mine set up to email me when it changes.

Python:
import requests
import re
import time
from urllib.parse import urlencode

cars = [('ORDER', 'VIN')]

for (don,vin) in cars:
    print(vin)
 
    s = requests.Session()
 
    when = int(time.time()*1000)
    html = s.get('https://shop.ford.com/vehicleordertracking')
    s.headers['Referer'] = 'https://shop.ford.com/vehicleordertracking'
    s.headers['Sec-Fetch-Dest'] = 'empty'
    s.headers['Sec-Fetch-Mode'] = 'cors'
    s.headers['Sec-Fetch-Site'] = 'same-origin'
    s.headers['X-Requested-With'] = 'XMLHttpRequest'
    m = re.search(r'<meta\s+name="metidsvt"\s+content="vsb:st:svt"\s+data-stvt="([^"]*)"', html.text)
    metidsvt = m.group(1)
    m = re.search(r'restrictions:\s*"([^"]*")', html.text)
    restrictions = urlencode({'restrictions':m.group(1)})
    s.headers['CSRF-Token'] = 'Bearer ' + metidsvt
    met = s.get('https://shop.ford.com/aemservices/nocache/svt/api/metheader')
    s.headers['CSRF-Token'] = 'Bearer ' + met.json()['Code']
    basic = s.get('https://shop.ford.com/aemservices/svt/api/cvotcheck?don='+don+'&vin='+vin+'&brand=ford&language=en&country=us&defaultmsg=This vehicle is not yet available in order tracking at this time, please check back later&defaultmsgtype=noticepop&'+restrictions+'&_='+str(when))
    print(basic.json(indent=4))

And that gives something like
Code:
{
    "Status": "success",
    "DeliveredDate": "",
    "Description": "Vehicle Found",
    "Year": "2022",
    "Model": "Mache",
    "Make": "Ford",
    "VehicleLine": "Mustang Mach-E",
    "Market": "USA",
    "VehicleStatus": "Awaiting Shipment"
}
 

ktcastle18

Member
First Name
Kim
Joined
Feb 2, 2022
Threads
0
Messages
16
Reaction score
18
Location
Las Vegas
Vehicles
Mustang Mach E, Premium RWD, Rapid Red
Country flag
I got my built email officially at 1:56pm. Estimated delivery window 4/28-5/5. The tracker is still not working for me, but the JSon still tells me "Awaiting Shipment".

I updated the tables on Post #1. One of the dealer Selects I am tracking in batch 004831 got modules... good news for those in that batch!
Congrats!! Thank you for keeping us updated with all the modules. I'm getting excited for batch 4860. :)
 
Joined
Mar 24, 2022
Threads
0
Messages
17
Reaction score
4
Location
USA
Vehicles
Wrangler
my modules populated and I got an e-mail from Ford saying it is done. My ford.com account does not show that it's done, though. It says May 1-7 delivery to NC. Is that accurate, or what has history suggest in terms of delivery? 6 weeks seems excessive.
 

Toreus

Well-Known Member
First Name
Ed
Joined
Dec 10, 2021
Threads
1
Messages
110
Reaction score
129
Location
NC
Vehicles
2022 Iced Blue Silver Premium ER AWD
Occupation
IT
Country flag
my modules populated and I got an e-mail from Ford saying it is done. My ford.com account does not show that it's done, though. It says May 1-7 delivery to NC. Is that accurate, or what has history suggest in terms of delivery? 6 weeks seems excessive.
Crossroads by chance?
 

Keikidoc

Member
First Name
Howard
Joined
Mar 23, 2022
Threads
0
Messages
5
Reaction score
5
Location
Blue Springs, MO
Vehicles
Mach E 2022 Premium, eAWD EX battery
Country flag
I don't think you need to download the file, they just populate lower on the page. Then copy it to Excel to count the rows.

Ford Mustang Mach-E 3/21/22 Build Week Gang 1648239388323
Thank you @BaconNerd. I guess I wasn't aware of the BCE modules populating since my build wasn't ready. I'll keep watch
 

adamtstipp

Well-Known Member
Joined
Sep 26, 2021
Threads
7
Messages
128
Reaction score
149
Location
Missouri
Vehicles
2018 Traverse, 2022 Mustang Mach-e Premium
Country flag
So how do the 2 selects in 4831 have modules before my car does when my sequence number is lower?
 
OP
OP
mmap

mmap

Well-Known Member
Joined
Oct 9, 2021
Threads
5
Messages
199
Reaction score
324
Location
Maryland
Vehicles
2022 MachE Route1
Occupation
Software Guy
Country flag
So how do the 2 selects in 4831 have modules before my car does when my sequence number is lower?
Yeah, in all the batches (and also in 3/14) there doesn't seem to be a lot of rhyme or reason to the order that things go in. There's a select between the two that have modules that doesn't have them yet.

But if things keep moving at the pace they have then the whole batch will be done before the end of the day tomorrow.
 

Pidg133

Well-Known Member
Joined
Nov 22, 2021
Threads
9
Messages
94
Reaction score
58
Location
California
Vehicles
2022 Select Rapid red & ordered 2022 GT Ice Blue
Country flag
my modules populated and I got an e-mail from Ford saying it is done. My ford.com account does not show that it's done, though. It says May 1-7 delivery to NC. Is that accurate, or what has history suggest in terms of delivery? 6 weeks seems excessive.
March 7 build week checking in, I was on a delay and was shipped the 22nd and it's estimating May 6-12 for me in SoCal
 

adamtstipp

Well-Known Member
Joined
Sep 26, 2021
Threads
7
Messages
128
Reaction score
149
Location
Missouri
Vehicles
2018 Traverse, 2022 Mustang Mach-e Premium
Country flag
Yeah, in all the batches (and also in 3/14) there doesn't seem to be a lot of rhyme or reason to the order that things go in. There's a select between the two that have modules that doesn't have them yet.

But if things keep moving at the pace they have then the whole batch will be done before the end of the day tomorrow.
Do they build on Saturdays?
Sponsored

 
 




Top