Bulk Map Products
PUT/api/temu/:integrationInstance/products/map
Maps Temu listings to internal products by SKU in bulk. Each mapping entry links one Temu listing (identified by its Temu goods id) to the internal product whose SKU matches mapped_sku. After mapping, any imported order lines that were previously unmatched are re-linked to the newly mapped products in the background.
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
Request body:
mapping(array, required, min 1) — each entry:sales_channel_listing_id(string, required) — the Temu goods id of the listing.mapped_sku(string or null, required) — SKU of the internal product to map to. Passingnull(or an empty string) together with an existingproduct_listing_idremoves that mapping.product_listing_id(integer or null, optional) — id of an existing listing mapping, used when updating or removing a mapping.subscription_offering_id(integer or null, optional) — map the listing to a subscription offering instead of a product.
Authentication: Requires Bearer token.
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 Entity
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.