Shipment Details Query

Hi

I am using following query to get shipment details

query {
  shipments(order_id: "T3JkZXI6ODQ4ODE0MDE=") {
    request_id
    complexity
    data {
      edges {
        node {
          id
          order_id
          created_date
          shipping_labels {
            id
            legacy_id
            account_id
            tracking_number
            carrier
            shipping_name
            shipping_method
            created_date
          }
        }
      }
    }
  }
}

Can you pls say how to get shipping date of order using above query?

@tomasw

It will be helpful to know about ship date and we will move forward on this, because we are struck in this part.

Hi @velvinayak,

The created_date you reference is the date that the shipment was created, which I believe in terms of ShipHero, is the same as when it shipped.

1 Like

Hi @velvinayak!
That is correct @jeremyw :+1: should be the created_date
When you ship with the app, the shipment gets created and the created_date you see there is the one when the shipment was created, so its the moment when it was shipped as well
Let me know if I could explain better or if there is anything I could help with
Thanks in advance!
Tom

Thank you so much @tomasw @jeremyw