Hi @jrtwynam
You could use the orders query, filter by order number and get the first result, this is for example:
query {
orders(order_number: "MO801") {
request_id
complexity
data(first: 1) {
edges {
node {
id
legacy_id
order_number
shop_name
fulfillment_status
order_date
email
profile
}
}
}
}
}
And as for the Error, it looks like the same we are discussing on Issue updating products
But the UUID
will only work to make the request using the legacy_id
, which is the id of the order on ShipHero and it won’t work with the order number.
Let me know if that doesn’t work for you,
Thanks!