New Query: Shipping Containers

We have added a new query to our API.

Shipping Containers, Here is an example of the new query and the fields available

query {
  shipping_containers(carrier:"UPS" shipping_method:"08"){
      data (first:100 sort:"updated_at") {
          edges {
              node {
                  id
                  legacy_id
                  account_id
                  warehouse_id
                  container_id
                  note
                  needs_manifest
                  carrier
                  shipping_methods
                  shipping_labels (first:1) {
                      edges {
                          node {
                              legacy_id
                          }
                      }
                  }
                  created_at
                  updated_at
                  shipped_at
              }
          }
      }
  }
}
2 Likes