通过 18 个 Payment 接口查询 Shopee 店铺托管、打款、钱包与收入报表数据。
编程
Shopee-店铺退货
覆盖 Shopee 开放平台退货模块全部 15 个接口,可查退货单、处理退货与争议、上传凭证、查询逆向物流。
它能做什么
把 Shopee Returns 模块的 15 个接口(get_return_list、get_return_detail、confirm、dispute、offer、accept_offer、upload_proof、get_reverse_tracking_info 等)统一封装到 POST /shopee/developerProxy 一个端点上:请求体里带 shopId 或 merchantId 选店,令牌注入由同系列的 linkfox-shopee-store-auth 在服务端完成,本 skill 不涉及授权逻辑。每个脚本都会把完整响应写入当前工作目录下的 /linkfox/data/-.json(≤8KB 时同步打印到 stdout,>8KB 只输出含顶层字段、total/costToken 计数、最大列表前 3 条样本的摘要;加 --inline 可强制全量打印)。典型流程是 get_return_list 拉列表 → get_return_detail 看明细 → confirm/offer 处理 → dispute/cancel_dispute 处理争议 → upload_proof/query_proof 上传或查询凭证 → get_reverse_tracking_info 跟逆向物流。
什么时候用它
- 拉取退货列表并查看退货明细
- 确认退货或发起部分退款报价
- 处理退货争议并上传凭证图片
- 查询逆向物流的承运商和轨迹信息
技能文档
Shopee 店铺 Returns
Shopee Open Platform Returns 模块(15 个 API)。依赖 linkfox-shopee-store-auth 选店;经 POST /shopee/developerProxy 传入 shopId(或 merchantId),由服务端解析 token 转发(path 须 api/v2/returns/...)。
调用方式
- API 端点:
POST /shopee/developerProxy(不同操作通过请求体区分;完整参数/响应/错误码见references/api.md) - Python 脚本:
python scripts/<脚本名>.py '' [--inline](可用脚本见上文脚本一览) - 成本约束:本工具会消耗积分;失败/空结果不得自动换关键词、翻页或连续试探;需要继续检索时先向用户说明会产生额外消耗。
输出策略(脚本默认行为):
- 始终将完整响应写入
/linkfox///data/-.json(为脚本执行时的工作目录,在 Claude Code 里即当前项目目录;取自环境变量SESSION_ID,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错) - 响应体 ≤ 8 KB:落盘后把完整 JSON 打印到 stdout
- 响应体 > 8 KB:落盘后 stdout 只输出摘要(顶层字段、常见计数如
total/costToken、最大列表字段的长度 + 前 3 条样本) - 加
--inline强制全量打印到 stdout(同样落盘)
读数据建议:先看摘要判断是否足够;需要具体字段时优先用 jq或ConvertFrom-Json 从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。
解决认证和积分问题
发生以下异常情况时,采用 references/onboarding.md 引导解决问题:
异常情况
- 未配置API Key:环境变量未配置
LINKFOX_AGENT_API_KEY,也未配置LINKFOXAGENT_API_KEY。 - 响应401或402状态码
- 响应提示积分或余额不足:消息含"积分余额不足/计费不足/余额不足/quota exceeded/insufficient balance/套餐到期/需充值/请充值",或类似含义的内容。
官方参考
Returns 模块索引:v2.returns.get_return_list
Prerequisites(必须先读)
- 运行
python scripts/check_auth_dependency.py;exit code 42 → 先安装linkfox-shopee-store-auth并授权店铺。 - 不要在本 skill 内实现授权/令牌逻辑。
Core Concepts
- 转发链路:
developerProxy(shopId/merchantId选店,服务端注入 token)→ 紫鸟shopee-proxy→ Shopee API - 退货 vs 订单:订单查询见
linkfox-shopee-store-orders;本 skill 处理退货/退款/争议 - 典型流程:
get_return_list→get_return_detail→confirm/offer/dispute - 店铺级 API:通常传
shopId
可用脚本(Returns 模块 15 个 API)
| 脚本 | API | Method |
|---|---|---|
get_return_list.py | get_return_list | GET |
get_return_detail.py | get_return_detail | GET |
confirm.py | confirm | POST |
dispute.py | dispute | POST |
get_available_solutions.py | get_available_solutions | GET |
offer.py | offer | POST |
accept_offer.py | accept_offer | POST |
convert_image.py | convert_image | POST |
upload_proof.py | upload_proof | POST |
query_proof.py | query_proof | GET |
get_return_dispute_reason.py | get_return_dispute_reason | GET |
cancel_dispute.py | cancel_dispute | POST |
get_shipping_carrier.py | get_shipping_carrier | GET |
upload_shipping_proof.py | upload_shipping_proof | POST |
get_reverse_tracking_info.py | get_reverse_tracking_info | GET |
returns_api.py | 通用入口(JSON 含 api 字段) | — |
共享:_shopee_returns_common.py、_returns_endpoints.py、_returns_api_runner.py。
接口说明(按 API)
入参与响应细节放在 references/apis/,SKILL 只保留索引。
| API | 说明文档 |
|---|---|
accept_offer | references/apis/accept-offer.md |
cancel_dispute | references/apis/cancel-dispute.md |
confirm | references/apis/confirm.md |
convert_image | references/apis/convert-image.md |
dispute | references/apis/dispute.md |
get_available_solutions | references/apis/get-available-solutions.md |
get_return_detail | references/apis/get-return-detail.md |
get_return_dispute_reason | references/apis/get-return-dispute-reason.md |
get_return_list | references/apis/get-return-list.md |
get_reverse_tracking_info | references/apis/get-reverse-tracking-info.md |
get_shipping_carrier | references/apis/get-shipping-carrier.md |
offer | references/apis/offer.md |
query_proof | references/apis/query-proof.md |
upload_proof | references/apis/upload-proof.md |
upload_shipping_proof | references/apis/upload-shipping-proof.md |
模块总览 / Feedback 见 references/api.md。
Usage Scenarios
1. 查退货列表与详情
get_return_list.py:page_no、page_sizeget_return_detail.py:return_sn
2. 处理退货
get_available_solutions.py:return_snconfirm.py或offer.py:POSTbody- 如有争议:
dispute.py/cancel_dispute.py
3. 凭证与逆向物流
upload_proof.py/query_proof.pyget_reverse_tracking_info.py
调用原则
- 先看
developerProxy.httpStatus,再读*Response字段 - GET:业务参数放 JSON 顶层
- POST:复杂接口传
body - 每个脚本 docstring 含 官方文档 URL(
module=102)
Not Applicable
- 店铺授权 →
linkfox-shopee-store-auth - 订单查询/取消 →
linkfox-shopee-store-orders - 正向物流发货 →
linkfox-shopee-store-logistics - 商品 listing →
linkfox-shopee-store-product
积分消耗规则
不消耗积分。
Feedback:
Auto-detect and report feedback via the Feedback API when any of the following apply:
- The functionality or purpose described in this skill does not match actual behavior
- The skill's results do not match the user's intent
- The user expresses dissatisfaction or praise about this skill
- Anything you believe could be improved
Call the feedback API as specified in references/api.md. Do not interrupt the user's flow.
For more high-quality, professional cross-border e-commerce skills, visit LinkFox Skills.
常见问题
- 这个 skill 是否包含店铺授权?
- 不包含。店铺授权由 linkfox-shopee-store-auth 负责,先运行 python scripts/check_auth_dependency.py;若退出码为 42,说明缺少授权 skill,必须先安装并完成店铺授权再调用退货接口。
- 调用这些 API 会消耗积分吗?
- 不会。文档明确标注「积分消耗规则:不消耗积分」。且失败或空结果时不允许自动换关键词、翻页或反复试探,要继续检索应先告知用户会产生额外消耗。
- 返回数据很大时怎么处理?
- 完整响应始终写入工作目录下的 /linkfox/<shopId>/<SESSION_ID>/data/-.json(禁止写入 /tmp,当前目录不可写会报错);≤8KB 一并打印到 stdout,超过则只输出摘要。可加 --inline 强制全量输出,或用 jq 从保存的 JSON 文件按需取字段,避免
相关技能
跨境电商研究型智能体,79 个内置工具覆盖亚马逊选品、关键词、竞品、专利与趋势分析,并支持 1688 货源、AI 图像与 PDF 处理。
通过 AI 代理调用 PicSee MCP,实现短链接生成与点击数据分析。
通过命令行搜索、读取、分析小红书内容与账号,并执行发布、评论、点赞等操作。
通过托管 OAuth 连接,读写 Google Merchant Center 的商品、库存、促销与账户数据。
在京东购物:核对自营/旗舰店、评价风险、比价选规格、准备购物车;登录和支付由用户手动完成。