linkfox-temu-promotion-global

Calls Temu Global promotion APIs through the LinkFox gateway to query campaigns and enroll goods.

17|3|Updated Jun 18, 2026
One-click install
npx skills add https://github.com/w9uk5ie8v/LinkFoxSkills --skill linkfox-temu-promotion-global-w9uk5ie8v
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: linkfox-temu-promotion-global
Source: https://github.com/w9uk5ie8v/LinkFoxSkills/tree/main/linkfox-temu-promotion-global
Command: npx skills add https://github.com/w9uk5ie8v/LinkFoxSkills --skill linkfox-temu-promotion-global-w9uk5ie8v

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Managing Temu Global promotion campaigns requires manually navigating the Partner console and handling authentication, API signing, and async operation polling. This Skill wraps the Partner Global Promotion APIs (bg.promotion.*) behind the LinkFox gateway so agents can query activities, enroll goods, and update promotion entries with scripted calls. ## Core Features & Use Cases - Promotion Campaign Query: List lightning deals, big sales, and clearance activities with status and time filters via bg.promotion.activity.query. - Goods Enrollment Workflow: Find candidate goods with recommended prices, enroll them into activities, poll operation results by draftId, and update prices, quantities, or SKUs. - Token Management: Guide Temu accessToken authorization, save tokens locally by storeKey, and reuse them across calls without re-pasting credentials. - Use Case: A seller wants to join a lightning deal. The agent queries ongoing activities, checks candidate goods and recommended supplier prices, enrolls the goods, then polls the operation result until enrollment succeeds. ## Quick Start Set the LINKFOXAGENT_API_KEY environment variable and ask the agent to query ongoing Temu Global lightning deal activities using your Temu access token.

Frequently Asked Questions about linkfox-temu-promotion-global

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I enroll goods into a Temu Global promotion activity?▼

First query activities with bg.promotion.activity.query to get an activityId, then check candidate goods with bg.promotion.activity.candidate.goods.query. Submit enrollment via the global_promotion_activity_goods_enroll.py script with goodsId, activityQuantity, and SKU prices, then poll the returned draftId.

What credentials are required to call Temu promotion APIs through LinkFox?▼

You need two tokens: a LinkFox user token set as the LINKFOXAGENT_API_KEY environment variable for gateway authentication, and a Temu accessToken copied manually from the Temu seller console authorization management page. Alternatively, save the Temu token locally and reference it by storeKey.

How do I check the result of a Temu promotion enrollment?▼

Enrollment and update calls return a draftId for asynchronous processing. Pass that draftId in the draftIdList parameter to bg.promotion.activity.goods.operation.query using the global_promotion_activity_goods_operation_query.py script to retrieve operationStatus and any failure reason.

What operateType values does the Temu promotion goods update API support?▼

The bg.promotion.activity.goods.update API supports four operateType values: 10 updates activity supplier price via updateSkuList, 20 updates activity quantity, 30 deactivates the activity goods, and 40 adds new SKUs via addSkuList. Each type requires its corresponding parameters.

Does this skill support Temu sites other than Global?▼

The promotion scripts default to site=global with semi-managed management type, but the generic temu_proxy.py script supports cn, partner, us, global, and eu sites. Product management, pricing, and order operations are handled by separate sibling skills.