---
title: "Shipping"
method: PUT
path: "/v1/seller/order/shipping"
tags: ["Order"]
---

# Shipping

`PUT /v1/seller/order/shipping`

Send shipping information for shipped orders

## Request body

- OrderShipping — Batch of shipping notifications for marketplace orders (carrier, tracking number, ship date).
  - `orderList` object[]
    - `sellerId` string, required — A unique Id identify a Seller on a specific SalesChannel. The SellerId is generated from the Channel itself during the Seller SignUp Process.
    - `orderId` string, required
    - `shippingComplete` boolean, required — When shipping is completed set to "true".
    - `shippingItems` object[], required
      - `carrier` string, required
      - `trackingNumber` string — Optional URL provided by the merchant that allows customers/buyers to track their shipment. This tracking URL enables customers to monitor the delivery status and location of their order during the shipping process.
      - `trackingUrl` string
      - `returnTracking` object, nullable — The return tracking number and carrier for the return process. Each orderItemId may have its own return tracking.
        - `carrier` string, required
        - `trackingNumber` string, required
        - `trackingUrl` string — Optional URL provided by the merchant that allows customers/buyers to track their shipment. This tracking URL enables customers to monitor the delivery status and location of their order during the shipping process.
      - `shippedAt` string, date-time
      - `orderItemIdList` object[], nullable — Container to describe what items are included.
        - `orderItemId` string, string, required — A unique identifier to identify a order item. This ID is provided by the Channel itself an should be used to identify a order item id.
        - `quantity` union, required
          - number, float
          - integer
      - `shippedFrom` object, nullable — The adress from where the shipment is sent.
        - `city` string, required
        - `country` string, required
        - `postcode` string, required
    - `channel` string, required — This is the unique Channel name.

## Response `201`

Created

## Other responses

- `400` — Bad Request
- `401` — Access forbidden, invalid or unknown Token was used.
- `429` — User has send to many requests
- `500` — Unexpected Server Error

---

[API](https://skmtc.net/jtl-software/apis/scx-authentication-api.md) · [All operations](https://skmtc.net/jtl-software/apis/scx-authentication-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/jtl-software/scx-authentication-api/revisions/f979b1ea6951/schema)
