Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
linkfox-ai avatar

Linkfox Temu Cancel Order Eu

  • 168 installs
  • 64 repo stars
  • Updated August 3, 2026
  • linkfox-ai/linkfox-skills

Helps with ai & agent building tasks.

About

linkfox-temu-cancel-order-eu is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • linkfox-temu-cancel-order-eu
  • AI & Agent Building
  • AI-coding skill

Linkfox Temu Cancel Order Eu by the numbers

  • 168 all-time installs (skills.sh)
  • +35 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #3,159 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/linkfox-ai/linkfox-skills --skill linkfox-temu-cancel-order-eu

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs168
repo stars64
Last updatedAugust 3, 2026
Repositorylinkfox-ai/linkfox-skills

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Temu 欧洲站 — 取消订单(买家 + 卖家)

本 skill(linkfox-temu-cancel-order-eu)覆盖 Partner Platform for EU 取消订单相关接口:

  • 买家/消费者bg.aftersales.cancel.list.getbg.aftersales.cancel.agree
  • 店家/卖家temu.order.cancel.appeal.applytemu.order.cancel.appeal.result.gettemu.order.cancel.outofstock.applytemu.order.cancel.outofstock.result.get

详见 partner-eu-catalog.md6 个接口)。

网关(本 skill 内置)

能力方法路径
取消单 OpenAPI(eu_cancel_*eu_seller_cancel_*temu_eu_proxyPOSThttps://tool-gateway.linkfox.com/temu/proxy
加签文件下载POSThttps://tool-gateway.linkfox.com/temu/fileDownload

相关 skill

场景skill
订单列表/详情/发货/地址/金额linkfox-temu-order-eu
美国站取消订单linkfox-temu-cancel-order-us
全球站(非 US/EU)取消订单linkfox-temu-cancel-order-global
Self-Fulfilled Shipmentslinkfox-temu-fulfillment-eusite=eu
商品管理linkfox-temu-manage-product-eu
退货与退款linkfox-temu-returns-refunds-eu
网关与 Temu token本 skill scripts/

API Usage

文档内容
api.md网关、鉴权、典型流程
partner-eu-catalog.md接口目录 + Partner URL + 脚本
apis/README.md按接口分文件

默认参数

字段默认说明
siteeuPartner EU
managementTypesemi-managed半托管
tokenPurposeorder-shipping订单/取消场景 token

鉴权

1. LinkFoxLINKFOXAGENT_API_KEY → Header Authorization + Token 2. TemuaccessTokenstoreKey(建议 tokenPurpose=order-shipping

Scripts(按 type)

买家取消

脚本type
eu_cancel_aftersales_cancel_list_get.pybg.aftersales.cancel.list.get
eu_cancel_aftersales_cancel_agree.pybg.aftersales.cancel.agree

卖家取消

脚本type
eu_seller_cancel_order_cancel_appeal_apply.pytemu.order.cancel.appeal.apply
eu_seller_cancel_order_cancel_appeal_result_get.pytemu.order.cancel.appeal.result.get
eu_seller_cancel_order_cancel_outofstock_apply.pytemu.order.cancel.outofstock.apply
eu_seller_cancel_order_cancel_outofstock_result_get.pytemu.order.cancel.outofstock.result.get

通用

脚本说明
temu_eu_proxy.py任意 type
temu_eu_file_download.py加签文件下载

接入新接口(约定)

1. 新增 references/apis/<type-slug>.md 2. 新增 scripts/eu_cancel_*eu_seller_cancel_*(调用 _eu_cancel_order_script.run_cli) 3. 更新 partner-eu-catalog.mdapis/README.md

示例

export LINKFOXAGENT_API_KEY="<key>"

python scripts/eu_cancel_aftersales_cancel_list_get.py '{
  "accessToken": "TOKEN",
  "tokenPurpose": "order-shipping",
  "site": "eu",
  "request": { "pageNo": 1, "pageSize": 20, "afterSalesStatusGroup": 8 }
}'

python scripts/eu_seller_cancel_order_cancel_outofstock_apply.py '{
  "accessToken": "TOKEN",
  "tokenPurpose": "order-shipping",
  "site": "eu",
  "request": {
    "parentOrderSn": "PO-123456789",
    "orderSnList": ["O-111111111"]
  }
}'

Feedback: skillNamelinkfox-temu-cancel-order-eu

网关与授权脚本

授权说明:references/access-token.md

<!-- LF_LARGE_RESPONSE_BLOCK -->

Handling Large Responses

To avoid overflowing the agent context, persist the response to disk and extract only the fields you need:

python scripts/response_io.py run --script scripts/check_linkfox_token.py --out-dir <DIR> '<params>'
python scripts/response_io.py read <file> --fields "<paths>"   # or --path "<JMESPath>"
Pick --out-dir outside any git working tree (e.g. /tmp/... on Unix, %TEMP%/... on Windows). Persisted responses may contain PII, pricing, or auth-sensitive data — do not commit them. Files are not auto-deleted; clean up when the task is done.
This skill exposes multiple entry scripts: check_linkfox_token.py, eu_cancel_aftersales_cancel_agree.py, eu_cancel_aftersales_cancel_list_get.py, eu_seller_cancel_order_cancel_appeal_apply.py, eu_seller_cancel_order_cancel_appeal_result_get.py, eu_seller_cancel_order_cancel_outofstock_apply.py, eu_seller_cancel_order_cancel_outofstock_result_get.py, get_temu_access_token.py, list_temu_access_tokens.py, save_temu_access_token.py, temu_eu_file_download.py, temu_eu_proxy.py, temu_file_download.py, temu_proxy.py, temu_token_guide.py. Pass --script scripts/<name>.py to choose the one you need.

run writes the full response to a file and emits only a schema preview + file path. read projects specific fields, with --limit/--offset for slicing and --format json|jsonl|csv|table for output.

When to prefer this pattern — apply your judgment based on the response characteristics, e.g.:

  • High field count per record, or fields you don't need
  • Batch/paginated results (multiple items per call)
  • Long-text fields (descriptions, reviews, HTML, time series)
  • Output reused across later steps rather than consumed immediately

For small, single-use responses, calling the main script directly is fine.

⚠️ The preview is a truncated schema + sample, not the full data. Any field-level decision must read from the persisted file via read. <!-- /LF_LARGE_RESPONSE_BLOCK -->

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.