Ship Inbound Order
POST/api/tiktok-shop/:integrationInstance/fbt/inbound-orders/:order/ship
Marks the inbound order as shipped at TikTok and, only once TikTok accepts it, posts the matching stock decrement at the source and the in-transit valuation.
This endpoint currently requires session authentication; Personal Access Token scope support is in progress.
Cartons are supplied here only when the plan left carton packing until shipment. When they are supplied, the packed quantities must account for every unit on every plan line exactly once — an under-packed or over-packed payload is rejected with 422.
Permission: integrations.update.
Body
freight_type— required string. SMALL_PARCEL, LTL or FTL.shipping_method— required string, max 64 characters.carrier_name— optional, nullable string, max 255 characters.pro_number— optional, nullable string, max 64 characters.cartons— optional array, max 500 entries.cartons[].carton_type— optional string. SINGLE_SKU or MIXED_SKU.cartons[].quantity— optional integer, min 1. The number of identical cartons this entry stands for; it multiplies the item quantities inside it.cartons[].carton_numbers— optional array of strings, each max 32 characters.cartons[].length_cm,cartons[].width_cm,cartons[].height_cm,cartons[].weight_kg— optional, nullable numbers, min 0.cartons[].items— required whencartonsis supplied. Array, at least one entry.cartons[].items[].goods_id— required whencartonsis supplied. String, max 64 characters.cartons[].items[].quantity— required whencartonsis supplied. Integer, min 1.cartons[].items[].lot_code— optional, nullable string, max 64 characters.cartons[].items[].expiration_at— optional, nullable date.
Request
Responses
- 200
- 401
- 403
- 404
- 422
- 429
OK
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Not found — no record with the given identifier (or the route does not exist). Verify the ID before retrying.
Unprocessable Content
Response Headers
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.