Webhook to event when order is fulfilled

Hi Team,

Is there any webhook that we can use to check if order is fulfilled? Thank you.

Kind Regards,
Altair

Hi Altair,

Yes, The Shipment Update webhook

Here you can find all the webhooks available too https://developer.shiphero.com/webhooks/

Have a nice day!

Hey @Altair, the Shipment Update Webhook is the closest thing to what you need. However, as orders can ship partially or split, you won’t know if that is the last shipment for that order. However, you could use the webhook as a trigger to run an order query:

query{
  order(id:"id from the webhook"){
    data{
      fulfillment_status
    }
  }
}