Shiphero order details URL

Hi there,

Not even sure if this is possible but — we wanted to develop our own custom Google Chrome extension that allows us to easily go to the order details page of for an order in Shiphero (example URL would be https://app.shiphero.com/dashboard/orders/details/175707773).

Here’s what we were hoping: you’re on an order page in Shopify, and then you’d click the extension’s button in the Google Chrome toolbar and it’d automatically take you that order’s Shiphero order details page.

Is there anyway to formulate what the Shiphero order details page URL would be based off any info from the Shopify order?

Hi @iman!
You could use the partner_order_id for that, and with the Shopify Order ID, get the ShipHero Order ID, something like this:

query {
  orders(partner_order_id: "3186345476284") {
    request_id
    complexity
    data(first: 1) {
      edges {
        node {
          id
          legacy_id
        }
      }
    }
  }
}

Let me know if that doesn’t help.
Thanks in advance!
Tom