Skip to main content

Item Shipment Delayed

This notification is received when the shipment of an order item is delayed.

Payload

{
  "eventType": "com.example..OrderItemShipmentDelayed",
  "cloudEventsVersion": "0.1",
  "eventTypeVersion": "1.0",
  "eventID": "266a2071-6076-4438-a580-a10525dadf11",
  "source": "api/v1/order/EXAMPLE-ORDER-123456",
  "contentType": "application/json",
  "data": {
    "merchantOrderId": "example-merchant-order-1234",
    "orderNumber": "EXAMPLE-ORDER-123456",
    "internalOrderState": "Created",
    "orderCancelState": "None",
    "billingAddress": {
      "firstName": "John",
      "lastName": "Doe",
      "email": "john.doe@example.com",
      "phone": "0123456789",
      "streetName": "Example Street",
      "streetNumber": "123",
      "postalCode": "12345",
      "city": "Example City",
      "region": "Example Region",
      "state": "Example State",
      "country": "EX"
    },
    "shippingAddress": {
      "firstName": "Jane",
      "lastName": "Doe",
      "email": "jane.doe@example.com",
      "phone": "9876543210",
      "streetName": "Sample Road",
      "streetNumber": "456",
      "postalCode": "67890",
      "city": "Sample City",
      "region": "Sample Region",
      "state": "Sample State",
      "country": "EX"
    },
    "items": [
      {
        "itemId": "item-123",
        "itemName": "Example Item",
        "quantity": 1,
        "price": 19.99
      }
    ],
    "delayReason": "Logistics issue"
  },
  "eventTime": "2024-10-11T10:24:50.702Z"
}