← Back to Skills Marketplace
linkfox-ai

Temu Returns Refunds US

by linkfox-ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
75
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install linkfox-temu-returns-refunds-us
Description
Temu 美国站电商退货与退款 API,经 LinkFox 网关转发 Partner US Returns & Refunds / 售后退货退款 相关 bg/temu 接口(退货申请、退款、售后单查询与处理等,接口将按 Partner 文档逐条接入)。当用户提到 Temu US 退货、退款、售后退货、return...
README (SKILL.md)

Temu 美国站 — 退货与退款(Returns & Refunds)

本 skill(linkfox-temu-returns-refunds-us)覆盖 Partner Platform for US Returns & Refunds / 电商退货与退款(及关联 After-sales 退货退款类)相关 bg.* / temu.* 接口(menu_code 与各 sub_menu_code 以 Partner 后台为准,见 partner-us-catalog.md)。

已接入 9 条 Partner Return and Refund 接口,清单见 partner-us-catalog.md

网关(本 skill 内置)

能力 方法 路径
退货退款 OpenAPI(us_returns_refunds_*temu_us_proxy POST https://tool-gateway.linkfox.com/temu/proxy
加签文件下载 POST https://tool-gateway.linkfox.com/temu/fileDownload

相关 skill

场景 skill
退货与退款(本 skill) linkfox-temu-returns-refunds-us
买家发起取消订单(非退货退款全流程) linkfox-temu-cancel-order-us
卖家发起取消订单 / 缺货取消 / 申诉 linkfox-temu-cancel-order-us
订单列表/详情/金额/售后上下文 linkfox-temu-order-us
商品管理 linkfox-temu-manage-product-us
履约/发货 linkfox-temu-fulfillment-us
网关与 Temu token 本 skill scripts/

API Usage

文档 内容
api.md 网关、鉴权、错误码、接入约定
partner-us-catalog.md 接口目录 + Partner URL + 脚本(随接入更新)
apis/README.md 按接口分文件apis/\x3Ctype-slug>.md

默认参数

字段 默认 说明
site us Partner US
managementType semi-managed 半托管(具体接口以 Partner 文档为准)
tokenPurpose order-shipping 订单/售后场景 token(见 access-token.md

鉴权

  1. LinkFoxLINKFOXAGENT_API_KEY → Header Authorization + Token
  2. TemuaccessTokenstoreKeystoreKey 时建议带 tokenPurpose=order-shipping

Scripts

脚本 说明
temu_us_proxy.py 任意 type 通用转发
temu_us_file_download.py 加签文件下载
us_returns_refunds_aftersales_parentaftersales_list_get.py bg.aftersales.parentaftersales.list.get
us_returns_refunds_aftersales_aftersales_list_get.py bg.aftersales.aftersales.list.get
us_returns_refunds_aftersales_parentaftersales_detail_get.py temu.aftersales.parentaftersales.detail.get
us_returns_refunds_aftersales_parentreturnorder_get.py bg.aftersales.parentreturnorder.get
us_returns_refunds_aftersales_returnaddress_get.py temu.aftersales.returnaddress.get
us_returns_refunds_aftersales_returnlabel_prepare_get.py temu.aftersales.returnlabel.prepare.get
us_returns_refunds_aftersales_signature_get.py temu.aftersales.signature.get
us_returns_refunds_aftersales_upload_returnlabel.py temu.aftersales.upload.returnlabel
us_returns_refunds_aftersales_carrier_get.py temu.aftersales.carrier.get

接入更多接口(约定)

你每提供一条 Partner 文档(type + sub_menu_code + URL + Request/Response 参数表),将:

  1. 新增 references/apis/\x3Ctype-slug>.md(完整入参/出参层级)
  2. 新增 scripts/us_returns_refunds_\x3Cslug>.py(调用 _us_returns_refunds_script.run_cli
  3. 更新 partner-us-catalog.mdapis/README.md 与本表

示例(通用代理)

export LINKFOXAGENT_API_KEY="\x3Ckey>"

python scripts/temu_us_proxy.py '{
  "accessToken": "TOKEN",
  "tokenPurpose": "order-shipping",
  "type": "\x3CTEMU_API_TYPE>",
  "params": {
    "request": {}
  }
}'

Feedback: skillNamelinkfox-temu-returns-refunds-us

网关与授权脚本

脚本 说明
check_linkfox_token.py 校验 LinkFox 用户 Token
temu_token_guide.py Temu accessToken 后台授权步骤
save_temu_access_token.py 保存 accessToken 到本地
list_temu_access_tokens.py 列出已保存 token
get_temu_access_token.py 读取已保存 token
temu_proxy.py 通用网关转发(多 site)
temu_file_download.py 加签文件下载(多 site)

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

Usage Guidance
Install only if you trust LinkFox with Temu seller access tokens and returns/order data. Prefer passing short-lived tokens from a secure secret manager instead of saving them with this skill, avoid printing tokens in logs or chat transcripts, and restrict use to the documented US returns/refunds scripts rather than the generic proxy/download helpers unless you intentionally need that broader access.
Capability Tags
requires-oauth-tokenrequires-sensitive-credentials
Capability Assessment
Purpose & Capability
The core US returns/refunds scripts match the stated purpose, but the package also documents and ships generic multi-site Temu proxy and signed-file-download scripts that can call arbitrary Temu API types outside the narrow returns/refunds workflow.
Instruction Scope
The user-facing scope is broad enough to trigger on generic return/refund terms, and the generic proxy accepts caller-supplied API type, site, and parameters without an artifact-level allowlist limiting calls to the documented US aftersales endpoints.
Install Mechanism
The artifact is a script/documentation skill with no declared third-party dependencies or automatic install-time execution found. The static exposed-secret findings appear to be false positives on variable names, not hardcoded credentials.
Credentials
Network calls to the LinkFox gateway and use of LinkFox/Temu credentials are coherent for this integration, but the skill handles high-value business credentials and order/returns data without strong in-artifact warnings about transmission, logging, or retention.
Persistence & Privilege
The skill can persist Temu access tokens in plaintext JSON under ~/.linkfox, supports overriding that path, and includes helpers that can print raw stored tokens; no encryption, owner-only permissions, or secret-store integration is implemented.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install linkfox-temu-returns-refunds-us
  3. After installation, invoke the skill by name or use /linkfox-temu-returns-refunds-us
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug linkfox-temu-returns-refunds-us
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Temu Returns Refunds US?

Temu 美国站电商退货与退款 API,经 LinkFox 网关转发 Partner US Returns & Refunds / 售后退货退款 相关 bg/temu 接口(退货申请、退款、售后单查询与处理等,接口将按 Partner 文档逐条接入)。当用户提到 Temu US 退货、退款、售后退货、return... It is an AI Agent Skill for Claude Code / OpenClaw, with 75 downloads so far.

How do I install Temu Returns Refunds US?

Run "/install linkfox-temu-returns-refunds-us" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Temu Returns Refunds US free?

Yes, Temu Returns Refunds US is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Temu Returns Refunds US support?

Temu Returns Refunds US is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Temu Returns Refunds US?

It is built and maintained by linkfox-ai (@linkfox-ai); the current version is v1.0.0.

💬 Comments