Automate Merging Orders?

We flag mergeable orders based on matching customer name + shipping address. https://shipping.shiphero.com/orders/merge/

Is there a way to automate selecting the orders that meet the criteria and then merging them? I don’t see anything in the api that suggests this, nor an automation rule in shiphero that allows this.
It would save our team time, our warehouse money and prevent mergeable orders from slipping through the pick window and being sent out separately.

2 Likes

Hey @AndreaPS,

Thanks for reaching out!
Looking into this now.

Best,
RayanP

Hey @AndreaPS,

Thanks for hanging in there!

I don’t believe there is any way to automate merging orders in ShipHero natively. I can go ahead and pass this feedback along to the team.

Let me know if there’s any questions or concerns.

Best,
RayanP

+1 this would be extremely helpful.

1 Like

A simple update to the orders query could function similar to how you added the ability to query for holds and have data returned via webhook:

query {
  orders (
    mergeable: boolean
  ) {
    data {
      edges {
        node {
          legacy_id
        }
      }
    }
  }
}

Would really save us some time and effort as well.

@sh-agent Any updates regarding this? is there a plan to make merging orders available through the API or in the automation rules anytime in the future?

Thanks

Hey @domantas,

Thanks for reaching out and welcome to our Developer Community!
There are no updates that I can share regarding this feature request at the moment.

Please let me know if you have any questions or concerns.

Best,
RayanP

+1 this would be very helpful. Any updates on this?