Determine customer account on Shipment Update webhook

Hi @afroznissar
Glad it is working!

You should be able to determine that with one of the fields included on the Webhook

"account_id": 7556

This ID should be the one from the customer account.

These fields should be displayed inside the line items array, like for example:

"line_items": [
                {
                    "sku": "1111111112222333",
                    "tariff_code": "00.00.00.000",
                    "price": 10.00,
                    "customs_description": "Paint Black",
                    "customs_value": "10.00",
                    "line_item_id": 4818261,
                    "quantity": 1,
                    "weight": 3.53,
                    "partner_line_item_id": "1612802371-5",
                    "id": "16120371-5",
                    "country_of_manufacture": "",
                    "product_name": "Paint Black",
                    "name": "Paint Black",
                    "ignore_on_customs": false
                }

Let us know if you are not receiving them.
Thanks in advance!
Tom