---
title: "Order Items Shipped Webhook"
method: POST
path: "/api/v1/webhooks/order-items-shipped"
tags: ["Webhook Messages"]
---

# Order Items Shipped Webhook

`POST /api/v1/webhooks/order-items-shipped`

This is a dummy endpoint that demonstrates the webhook payload structure that will be sent
to webhook subscribers when an order_items.shipped event occurs.

The actual webhooks will be sent asynchronously to the URLs specified in the webhook subscriptions
that are subscribed to the order_items.shipped event type.

The webhook payload includes:
- id: ID of the webhook message
- event: The event type (order_items.shipped)
- timestamp: When the event occurred
- subscription_id: ID of the webhook subscription
- message: The shipment data in the same format as the GET /shipments/{id} endpoint

## Request body

- ShipmentItemsShippedWebhookSchema
  - `id` integer, required — ID of the webhook message
  - `event` 'order_items.shipped', required — Event type of webhook message
  - `timestamp` string, date-time — UTC timestamp when the event was created
  - `message` GetShipmentSchema, required
    - `items` OrderItemSchema[], required — List of order items in this shipment
      - `return_tracking_key` string, nullable, required
      - `shipment_tracking_key` string, nullable, required
      - `sku` string, required — SKU of the product variant
      - `status` 'open' | 'shipped' | 'cancelled' | 'returned', required
      - `id` integer, nullable
      - `vat` number — The tax percentage
      - `price_without_tax` integer, required — Price of the product excluding tax in the smallest currency unit (e.g. cents for Euro)
      - `price_with_tax` integer, required — Price of the product including tax in the smallest currency unit (e.g. cents for Euro)
    - `carrier_key` string, required — Carrier key of the shipment
    - `return_tracking_key` string, nullable
    - `tracking_key` string, nullable
  - `subscription_id` integer, nullable — ID (integer) of this property

## Response `200`

OK

---

[API](https://skmtc.dev/aboutyou/apis/sellers-center-api.md) · [All operations](https://skmtc.dev/aboutyou/apis/sellers-center-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/aboutyou/sellers-center-api/revisions/578d18d6e63c/schema)
