linkfox-temu-tax-eu

Calls Temu Partner EU tax APIs through the LinkFox gateway for invoices and reports.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve? Temu EU sellers and developers need to work with Partner EU tax APIs (VAT invoices, monthly tax reports, signed file downloads) but must handle LinkFox gateway authentication, Temu accessToken management, and per-endpoint request schemas manually. This Skill packages 7 temu.pay.tax.* endpoints into ready-to-run Python CLI scripts with full parameter documentation. ## Core Features & Use Cases - Invoice Operations: Query invoice summaries and details by parent order number, download invoice PDFs via signed URLs, and upload merchant invoices or credit notes. - Tax Report Workflow: Apply for monthly export reports (YYYY-MM) and download the resulting merchant report files by taskId or requestId. - Credential Management: Save, list, and retrieve Temu accessTokens locally by storeKey, site, managementType, and tokenPurpose, with an authorization guide for each shop type. - Use Case: A marketplace operations team needs April's EU tax report. They run eu_tax_apply_export_report.py with reportMonth 2025-04, receive a taskId, then call eu_tax_merchant_report_download.py to get the file URL. ## Quick Start Set the LINKFOXAGENT_API_KEY environment variable and ask the agent to query Temu EU invoice info for a parent order number using your Temu accessToken.

Frequently Asked Questions about linkfox-temu-tax-eu

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

FAQPage Schema
How do I query Temu EU tax invoices by order number?▼

Use the temu.pay.tax.invoice.info.query endpoint via eu_tax_invoice_info_query.py with a parentOrderSnList of up to 20 parent order numbers. For full line-item detail including VAT rates and shipping fees, call eu_tax_invoice_detail_query.py with a single parentOrderSn.

How to download Temu EU monthly tax reports?▼

First call eu_tax_apply_export_report.py with reportMonth in YYYY-MM format and a requestId to receive a taskId. Then call eu_tax_merchant_report_download.py with that taskId or requestId to get the report fileUrl.

What credentials does the Temu EU tax API require?▼

Two tokens are needed: a LinkFox user token passed via the LINKFOXAGENT_API_KEY environment variable or JSON token field, and a Temu accessToken copied manually from the Temu seller console. You can also save the Temu token locally and reference it by storeKey.

Can I upload merchant invoices to Temu EU programmatically?▼

Yes, use eu_tax_merchant_upload_invoice.py with parentOrderSn, invoiceDirection (1 for invoice, 2 for credit note), invoiceName, recipientType, and a fileUrl. Obtain an upload signature first via the temu.pay.tax.get.galerie.signature endpoint.

Why does the Temu gateway return error code 1002 or 1003?▼

Code 1002 means invalid parameters or an invalid LinkFox token, so verify LINKFOXAGENT_API_KEY and request fields. Code 1003 means the forwarding to Temu failed, so check the Temu accessToken validity, IP whitelist configuration, and network connectivity.