Skills trendyol-admin
Comprehensive management of Trendyol marketplace via API v2.0. Includes product lifecycle (create, update, delete, archive), stock/price management, order processing (status updates, shipping), returns, and customer questions. Use this skill as a knowledge base to construct correct API requests.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/awelab/trendyol-admin" ~/.claude/skills/clawdbot-skills-trendyol-admin && rm -rf "$T"
manifest:
skills/awelab/trendyol-admin/SKILL.mdsource content
Trendyol Admin (AI Knowledge Base)
This skill provides a comprehensive reference for the Trendyol Marketplace API v2.0. It contains all necessary endpoints, authorization requirements, and payload schemas to manage a Trendyol store.
🛠 Usage for AI Agents
- Authentication: Always use Basic Auth.
- Username:
API_KEY - Password:
API_SECRET - Generate Header (One-liner):
echo -n "YOUR_API_KEY:YOUR_API_SECRET" | base64
- Username:
- Mandatory Headers: Every request MUST include:
Authorization: Basic <base64>User-Agent: <SupplierId> - SelfIntegration
: This is the mandatory parameter to switch national markets.storeFrontCode
: United Arab Emirates (AED)AE
: Saudi Arabia (SAR)SA
: Qatar (QAR)QA
: Kuwait (KWD)KW
: Bahrain (BHD)BH
: Oman (OMR)OM
: Germany (EUR)DE
: Azerbaijan (AZN)AZ
: Romania (RON)RO
: Czech Republic (CZK)CZ
: Hungary (HUF)HU
: Slovakia (EUR)SK
: Bulgaria (BGN)BG
: Greece (EUR)GR
- Endpoints: Refer to references/api_reference.md to find the correct URL for the task (Product, Inventory, Order, etc.).
- Execution: Since there are no pre-built scripts, use
or inline Node.js/Python code to execute requests as defined in the reference.curl
📖 Key Sections in Reference
- Authorization: Header construction and error codes.
- Product Integration: Full lifecycle management of items.
- Order Integration: From creation to delivery status updates.
- Webhooks: Real-time notification models.
- API Reference File: references/api_reference.md
⚠️ Important Rules
- Base URL (Prod):
https://apigw.trendyol.com/integration/ - Rate Limit: 50 requests per 10 seconds.
- Image Requirements: 1200x1800 px, HTTPS URLs.
- JSON Only: All payloads must be valid JSON.