How can we get the that user details which are printing the orders from shiphero backend

How can we get the that user details which are logged into the shiphero account and printing the orders from shiphero backend.
Does there any API for this or how can we will implement this.
Regards

Hi @avi !
This query will give you the information from the order history. It will give the name of who printed the shipment under the information section

query {
  order_history(order_id: "<order id here>") {
    data {
      edges {
        node {
          order_id
          user_id
          username
          information
        }
      }
    }
  }
}

Hi,
I am not getting any information regarding the order history in result. Kindly check this order no 217288715.
I am getting this in response Screenshot by Lightshot. No information of printed person.
Kindly let me know more
Regards

Hi @avi,
I am not sure I understand, the screenshot does have the order history. That particular order will not show who the packer is because it has not yet been packed.