Tote Complete Webhook

Tote Complete Webhook

This URL is the URL that you setup on your system, so we can push updates. This webhook will be called anytime a Tote Pick is completed using the Multi Item Batch Picking or Single Item Batch Picking.

This webhook requires a specific flag to be set for your account, so please contact support@shiphero.com to request that we enable the flag to trigger the Tote Complete webhooks.

Webhook Body:

{
    "webhook_type": "Tote Complete",
    "totes": [
        {
            "tote_name": "Tote-14156034",
            "tote_uuid": "VG90ZToxNDE1NjAzNA==",
            "tote_barcode": "341504915",
            "orders": [
                {
                    "order_number": "TWO",
                    "gift_note": "",
                    "items": [
                        {
                            "quantity": 1,
                            "sku": "1234567",
                            "weight": "0.0500 oz",
                            "height": "1.00 in",
                            "width": "1.00 in",
                            "length": "1.00 in"
                        },
                        {
                            "quantity": 1,
                            "sku": "45678",
                            "weight": "0.0500 oz",
                            "height": "1.00 in",
                            "width": "1.00 in",
                            "length": "1.00 in"
                        },
                        {
                            "quantity": 1,
                            "sku": "456378",
                            "weight": "0.0500 oz",
                            "height": "1.00 in",
                            "width": "1.00 in",
                            "length": "1.00 in"
                        },
                        {
                            "quantity": 1,
                            "sku": "98765",
                            "weight": "0.0500 oz",
                            "height": "1.00 in",
                            "width": "1.00 in",
                            "length": "1.00 in"
                        }
                    ]
                }
            ]
        }
    ],
    "batch_id": "ddc68fc87baa4b9bab9f533d8e4d4531b58c4c6d0a9f755313269f4e2f396902"
}

Response:

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

Tote Cleared

This URL is the URL that you setup on your system, so we can push updates. This webhook will be called anytime a Tote is cleared from the Tote page or from within an order.

Webhook Body:

{
    "tote_id": "503901030",
    "tote_name": "Green-L",
    "reason": "manual",
    "items": [
        {
            "order_id": 240144078,
            "line_item_id": 633965574,
            "pick_id": 0,
            "sku": "FU10040045"
        },
        {
            "order_id": 240156684,
            "line_item_id": 633994555,
            "pick_id": 0,
            "sku": "FU10040045"
        },
        {
            "order_id": 240151715,
            "line_item_id": 633983940,
            "pick_id": 0,
            "sku": "FU10040045"
        },
        {
            "order_id": 240150619,
            "line_item_id": 633981282,
            "pick_id": 0,
            "sku": "FU10040045"
        },
        {
            "order_id": 240144183,
            "line_item_id": 633965820,
            "pick_id": 0,
            "sku": "FU10040045"
        },
        {
            "order_id": 240146458,
            "line_item_id": 633971225,
            "pick_id": 0,
            "sku": "FU10040045"
        },
        {
            "order_id": 240144989,
            "line_item_id": 633967729,
            "pick_id": 0,
            "sku": "FU10040045"
        },
        {
            "order_id": 240144928,
            "line_item_id": 633967563,
            "pick_id": 0,
            "sku": "FU10040045"
        },
        {
            "order_id": 240167510,
            "line_item_id": 634020166,
            "pick_id": 0,
            "sku": "FU10040045"
        },
        {
            "order_id": 240146046,
            "line_item_id": 633970191,
            "pick_id": 0,
            "sku": "FU10040045"
        },
        {
            "order_id": 224832016,
            "line_item_id": 598296059,
            "pick_id": 0,
            "sku": "FUXT4B"
        },
        {
            "order_id": 223369380,
            "line_item_id": 595859678,
            "pick_id": 0,
            "sku": "UX100VS"
        },
        {
            "order_id": 219252244,
            "line_item_id": 585045021,
            "pick_id": 0,
            "sku": "0"
        }
    ]
}

Response:

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