Submit Inbound Order Tracking
POST/api/tiktok-shop/:integrationInstance/fbt/inbound-orders/:order/tracking
Submits per-carton tracking numbers for a shipped inbound order.
This endpoint currently requires session authentication; Personal Access Token scope support is in progress.
TikTok keys tracking on its own carton numbers (C0001, C0002, …), so every parcel must name the carton it belongs to. A flat list of tracking numbers is rejected.
provider_name is the carrier value TikTok validates; the top-level carrier_name is the display value kept alongside the order.
Permission: integrations.update.
Body
parcels— required array, 1 to 500 entries.parcels[].provider_name— required string, max 255 characters.parcels[].tracking_number— required string, max 255 characters.parcels[].carton_number— required string, max 32 characters.carrier_name— optional, nullable string, max 255 characters.pro_number— optional, nullable string, max 64 characters.
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.