Inventory Change Webhook

Inventory Change Webhook

This webhook will be called anytime the On Hand quantity changes. What makes this webhook different from the Inventory Update Webhook, is that instead of sending inventory levels at the moment of trigger, it focuses on the change itself, including the reason for it.

Webhook Body:

{
  "webhook_type": "Inventory Change",
  "account_uuid": "QWNjb3VudDo2Mzg5OA==",
  "account_id": 18963,
  "warehouse_id": 76733,
  "warehouse_uuid": "V2FyZWhvdXNlOjc2NzMz",
  "user_id": 489254,
  "user_uuid": "VXNlcjoxNTg4MjY=",
  "sku": "LOT01",
  "quantity": 10,
  "location_name": "AA-05-01-01",
  "previous_on_hand": 110,
  "timestamp": "2025-02-03 13:19:30", 
  "reason": "Change from the product page via the ShipHero Web Dashboard.",
  "source": "manual",
  "lot_id": 114475,
  "lot_uuid": "TG90OjExNDQ3NQ==",
  "lot_expiration": "2025-03-25"
}

Response:

{
  "code": "200",
  "Message": "Success"
}