Label Event Properties

topic
string

Value is always label for the label event

trigger
enum<string>

Event that triggered the webhook

shop_id
string

The unique identifier of the shop that created the webhook

id
string

Loop return ID

order_id
string

Loop order ID

provider_order_id
integer

Shopify order ID

carrier
string

Name of carrier

tracking_number
string

The tracking number for the shipment

label_status
string

Status of the shipment according to EasyPost

Options: pre_transit, in_transit, out_for_delivery, delivered, failure, error, N/A (if no label status has been provided yet)

label_updated_atv
string

Date and time (ISO 8601 format) when the last status update occurred

shipment_id
string

The unique identifier associated with the shipment, assigned by Loop

Example Payload

{
    "topic": "label",
    "trigger": "label.updated",
    "shop_id": "9876",
    "id": "12345",
    "order_id": "1234567890",
    "provider_order_id": 1029384756,
    "carrier": "USPS",
    "tracking_number": "28735625627856237856287",
    "label_status": "in_transit",
    "label_updated_at": "2019-04-01T12:00:00+00:00",
  	"shipment_id": "6789998212"
}