Sponsored

Step 8 - Delivery Graphql status

travbz814

Well-Known Member
Joined
May 24, 2022
Threads
5
Messages
98
Reaction score
43
Location
Iowa
Vehicles
R1T, M3P
Clubs
 
Those that are waiting for step 8 to open up and know how to look at the browser's graphql; can you check what is showing? Mine is "INIT". Guessing this means; Initiated.

When searching for the graphql for the 8 steps I was able to find it by looking for "CONTRACTS_SIGNING_COMPLETE"

Here's what it looks like:
Rivian R1T R1S Step 8 - Delivery Graphql status Screen Shot 2022-06-21 at 9.48.45 AM


If you're not sure how to look up the graphql info check out this previous post: https://www.rivianforums.com/forum/...il-delivery-people-contacted.3656/post-137091
Sponsored

 

AdamUCF

Well-Known Member
First Name
Adam
Joined
Apr 3, 2022
Threads
13
Messages
299
Reaction score
434
Location
Orlando, FL
Vehicles
June 2022 R1T
I'm not seeing it in the web but when I do my own query for the delivery status I see similar. I haven't submitted the funding or insurance though.
JSON:
{
    "data": {
        "transactionStatus": {
            "__typename": "TransactionStatus",
            "isConsumerFlowComplete": false
        },
        "delivery": {
            "__typename": "Delivery",
            "deliveryStatus": "INIT",
            "carrier": "RIVIAN",
            "deliveryAddress": {
                "__typename": "DeliveryAddress",
                "addressLine1": "1234 Lake St",
                "addressLine2": null,
                "city": "Lakeville",
                "state": "FL",
                "country": "US",
                "zipcode": "12345"
            },
            "deliveryAppointment": null
        }
    }
}
 
OP
OP
travbz814

travbz814

Well-Known Member
Joined
May 24, 2022
Threads
5
Messages
98
Reaction score
43
Location
Iowa
Vehicles
R1T, M3P
Clubs
 
I'm not seeing it in the web but when I do my own query for the delivery status I see similar. I haven't submitted the funding or insurance though.
JSON:
{
    "data": {
        "transactionStatus": {
            "__typename": "TransactionStatus",
            "isConsumerFlowComplete": false
        },
        "delivery": {
            "__typename": "Delivery",
            "deliveryStatus": "INIT",
            "carrier": "RIVIAN",
            "deliveryAddress": {
                "__typename": "DeliveryAddress",
                "addressLine1": "1234 Lake St",
                "addressLine2": null,
                "city": "Lakeville",
                "state": "FL",
                "country": "US",
                "zipcode": "12345"
            },
            "deliveryAppointment": null
        }
    }
}
Interesting. I'm running @boardthatpowder 's python script. I'm not seeing that level detail either in the graphql response through the browser/network monitor or the python output. I'd like to see what they have listed for my delivery address. I've opted for a pickup at the factory. I'd assume that'd speed the process along, but I'm not getting anything from my guide.
 
OP
OP
travbz814

travbz814

Well-Known Member
Joined
May 24, 2022
Threads
5
Messages
98
Reaction score
43
Location
Iowa
Vehicles
R1T, M3P
Clubs
 
@ORFynder - I saw you're scheduled for delivery and had looked at the graphql data before. See the above posts. Can you see what yours is showing for the Delivery step?
 

ORFynder

Well-Known Member
Joined
Oct 17, 2021
Threads
17
Messages
333
Reaction score
635
Location
Bend, Or
Vehicles
"Rosie" the RIVN, Rav4 Prime
Occupation
Optimistic Advocate
@ORFynder - I saw you're scheduled for delivery and had looked at the graphql data before. See the above posts. Can you see what yours is showing for the Delivery step?
My Delivery Status states "APPT_SCHEDULED", Details is "null"
 

Sponsored

PDXR1T

New Member
Joined
Jun 19, 2022
Threads
0
Messages
4
Reaction score
7
Location
Portland
Vehicles
Model 3
@ORFynder I'm curious how long you went from 8 steps opening to scheduled delivery date? My guide just let me know that my R1T is in Portland.
 

AdamUCF

Well-Known Member
First Name
Adam
Joined
Apr 3, 2022
Threads
13
Messages
299
Reaction score
434
Location
Orlando, FL
Vehicles
June 2022 R1T
Interesting. I'm running @boardthatpowder 's python script. I'm not seeing that level detail either in the graphql response through the browser/network monitor or the python output. I'd like to see what they have listed for my delivery address. I've opted for a pickup at the factory. I'd assume that'd speed the process along, but I'm not getting anything from my guide.
I've got it in my powershell script. I think I pulled it from the Android app. Shouldn't be hard to translate to Python.
Code:
function Get-OrderStatus($graphHeaders, $orderId) {
    $query = @"
    query delivery(`$orderId: ID!) {
 transactionStatus(orderId: `$orderId) {
  __typename
  isConsumerFlowComplete
 }
 delivery(orderId: `$orderId) {
  __typename
  deliveryStatus
  carrier
  deliveryAddress {
     __typename
     addressLine1
     addressLine2
     city
     state
     country
     zipcode
  }
  deliveryAppointment {
     __typename
     appointmentId
     startDateTime
     endDateTime
     timeZone
  }
 }
}     
"@
    $body = @{
      operationName = "delivery"
      "query" = $query
      "variables" = @{
        orderId = [string]$orderId
      }

     }
    $graphHeaders.'dc-cid' = "m-android-" + (new-guid)
    $orderResp = Invoke-RestMethod "https://rivian.com/api/gql/t2d/graphql/" -Headers $graphHeaders -method post -websession $Global:webSession -body($body | convertto-json -depth 100)
    
    return $orderResp
}
 

ORFynder

Well-Known Member
Joined
Oct 17, 2021
Threads
17
Messages
333
Reaction score
635
Location
Bend, Or
Vehicles
"Rosie" the RIVN, Rav4 Prime
Occupation
Optimistic Advocate
@ORFynder I'm curious how long you went from 8 steps opening to scheduled delivery date? My guide just let me know that my R1T is in Portland.
From my 8 steps to schedule delivery date was approx 2 weeks, but was offered to take delivery in a little over a week if I was open to it. Specifically scheduled a Saturday as I am currently traveling for work
Sponsored

 
 




Top