simpleerp

Provides procedures for calling the SimpleERP HTTP API. Runtime: shell with curl/curl.exe or PowerShell (Invoke-WebRequest/Invoke-RestMethod). Credentials: send x-api-key on requests except GET /api/health; obtain the key from the user or environment variable SIMPLEERP_API_KEY. Covers list/get/create/update/delete and reports across products, inventory, warehouses, orders, invoices, payments, returns, master data, and admin. Use when the user asks to call SimpleERP, the SimpleERP API, or simpleerp-api for HTTP operations. Do not use for unrelated work, scraping, bypassing security, long jobs not exposed by the API, or when localhost:3000 or a user-stated base URL cannot be reached.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "simpleerp" with this command: npx skills add icystssi-lang/simpleerp

SimpleERP API

Use HTTP against the SimpleERP backend. Read domain examples only from the linked reference files; this file stays a navigator and global rules.

Agent execution policy

  • If completing the user request requires running commands/scripts (including curl commands or PowerShell Invoke-WebRequest / Invoke-RestMethod), run them automatically. Do not ask the user to run/execute anything.
  • GET /api/health may run without an API key. All other HTTP calls need a resolved x-api-key per Credentials below; if no key is available after that resolution, ask once for the key before issuing authenticated requests (then continue running commands automatically).

Environment

  • Base URL: http://localhost:3000. Resource paths are under /api (example: http://localhost:3000/api/products). If the user names another host, use it instead of localhost.
  • Clients: Prefer curl on Unix-like shells; on Windows, curl.exe or Invoke-WebRequest / Invoke-RestMethod in PowerShell.

Credentials

  • Header: x-api-key on every request except GET /api/health.

  • Resolution order: (1) API key the user provided in this conversation, if any; (2) environment variable SIMPLEERP_API_KEY; (3) if still missing, ask once for the key, then proceed.

  • Do not invent keys, search arbitrary files for secrets, or read unrelated workspace paths to find credentials.

  • Production: Admin routes need admin_access. Most resources map to explicit PERMISSION_ID checks; a few route modules use permissions.<name> || {} in code, and where that map has no entry yet, requirePermission receives a falsy id and does not enforce a named permission (API key still required). See references/ENDPOINTS.md (Notes).

Minimal GET example

curl "http://localhost:3000/api/health"
Invoke-WebRequest -Method GET -Uri "http://localhost:3000/api/health"

Template

curl "http://localhost:3000/api/<resource>?<query_params>"

Domain reference map

NeedOpen
All paths, methods, auth notesreferences/ENDPOINTS.md
Sys-par, currencies, warehouses, partners, customers, suppliersreferences/master-data-endpoints.md
Products, price lists, related master datareferences/products-and-pricing.md
Inventory, deliveries, transfers, adjustmentsreferences/inventory-and-deliveries.md
Sale/purchase orders, invoices, paymentsreferences/documents-sales-purchasing.md
Returns, credit memos, debit notesreferences/returns-and-memos.md
Users, API keys, permissionsreferences/admin-and-permissions.md
Chained flows (customer → sale order, etc.)references/workflows.md
Report route copy-paste curlsreferences/reports.md
List query allowlists (buildFilters), workspace pathsreferences/query-filters.md

Dynamic list query filters

Most list endpoints build WHERE from a fixed allowlist of query parameters (bind variables; unknown params ignored). See references/query-filters.md for how buildFilters works and workspace-root-relative paths to simpleerp-api source files.

  • Common: limit, offset on list endpoints; many support status or foreign-key ids.
  • Examples
    • /sys-parcodePrefix, limit, offset
    • /currenciesstatus, limit, offset
    • /taxstatus, limit, offset
    • /partnersstatus, limit, offset
    • /productsstatus, sku, limit, offset
    • /customers, /suppliers, /brands, /categories, /price-lists, /areas, /warehousesstatus, limit, offset
    • /credit-termsstatus, limit, offset
    • /uomstatus, prodId, limit, offset
    • /warehouse-zoneswarehouseId, status, limit, offset
    • /bank-accountsstatus, currencyCode, warehouseId, limit, offset
    • /exchange-ratessource, limit, offset
    • /membershipsstatus, limit, offset
    • /inventorywarehouseId, prodId, limit, offset
    • /deliveriesorderId (SALE_ORDER only), warehouseId, status, limit, offset
    • /sale-ordersstatus, customerId, limit, offset
    • /purchase-ordersstatus, supplierId, limit, offset
    • /cust-returnsstatus, customerId, saleOrderId, limit, offset
    • /cust-credit-memos, /cust-debit-notesstatus, customerId, limit, offset
    • /supp-returns, /supp-credit-memos, /supp-debit-notesstatus, supplierId, limit, offset
    • /transfersstatus, fromWhId, toWhId, limit, offset
    • /inventory-adjustmentsstatus, warehouseId, limit, offset
    • /permissionsfunctionId, limit, offset
    • /user-permissionsuserId, permissionId, limit, offset
    • /api-key-permissionsapiKeyId, permissionId, limit, offset

Prefer explicit filters and small limit values.

Report endpoints workflow

Use when the user needs a report and must pick accounts, products, warehouses, partners, customers, or suppliers.

  1. Discover (optional)GET /api/reports. Use includeData=true for quick aggregates. Example: GET /api/reports?includeData=true&topN=10
  2. Resolve IDs — Helper lists: /api/reports/helpers/warehouses, .../customers, .../products, .../partners, .../suppliers, .../accounts (for GL). If the user gives names or SKU, search helpers first, then call the report.
  3. CSV multi-selectproductIds=1,2,3, warehouseIds=10,11, customerIds=5,9, supplierIds=7, accountIds=100,101. Dedupe IDs; use limit / offset where supported.
  4. Call the report — Date window: fromDate=YYYY-MM-DD, toDate=YYYY-MM-DD. Full path table: references/ENDPOINTS.md (Reports). Copy-paste curls: references/reports.md.

GET /api/reports returns categories, accessibility metadata, and optional aggregate data; it normalizes singular/CSV filter aliases and may return warnings for bad filters or permissions.

Safety, pagination, and troubleshooting

  • Start with small limit (e.g. 20–50); narrow with status, customerId, supplierId, warehouseId, prodId, and other allowlisted query params from Dynamic list query filters where available.
  • Use GET for reads; POST to create; PUT/PATCH to update; DELETE only when requested and safe. Prefer deactivating via status over deleting master data or financial documents.
  • 400: often missing required fields (e.g. priceListId on customers, order dates). 409: duplicates or constraints (e.g. SKU, partner).

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Huo15 Openclaw Enhance

火一五·克劳德·龙虾增强插件 v5.7.8 — 全面适配 openclaw 2026.4.24:peerDep ^4.24 + build/compat 同步到 4.24 + 14 处 api.on 全部去掉 as any 改成 typed hook(hookName 联合类型 + handler 自动推断 Pl...

Registry SourceRecently Updated
General

Content Trend Analyzer

Aggregates and analyzes content trends across platforms to identify hot topics, user intent, content gaps, and generates data-driven article outlines.

Registry SourceRecently Updated
General

Prompt Debugger

Debug prompts that produce unexpected AI outputs — diagnose failure modes, identify ambiguity and conflicting instructions, test variations, compare model re...

Registry SourceRecently Updated
General

Indie Maker News

独行者 Daily - 变现雷达。读对一条新闻,少走一年弯路。每天5分钟,给创业者装上商业雷达。聚焦一人公司、副业、创业变现资讯,智能分类,行动导向。用户下载即能用,无需本地部署!

Registry SourceRecently Updated