用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Lap-Platform/claude-marketplace --skill ecwid命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | ecwid |
| description | ecwid API skill. Use when working with ecwid for bulk, customers, objects. Covers 42 endpoints. |
| version | 1.0.0 |
| generator | lapsh |
API version: api-v2
ApiKey Authorization in header
https://api.cloud-elements.com/elements/api-v2
42 endpoints across 7 groups. See references/api-spec.lap for full details.
| Method | Path | Description |
|---|---|---|
| POST | /bulk/download | Create a new bulk download job (asynchronous) |
| GET | /bulk/jobs | Fetch all the bulk jobs for an instance |
| POST | /bulk/query | Create an asynchronous bulk query job. |
| PUT | /bulk/{id}/cancel | Cancel an asynchronous bulk query job. |
| GET | /bulk/{id}/errors | Retrieve the errors of a bulk job. |
| GET | /bulk/{id}/status | Retrieve the status of a bulk job. |
| GET | /bulk/{id}/{objectName} | Retrieve the results of an asynchronous bulk query. |
| POST | /bulk/{objectName} | Upload a file of objects to be bulk uploaded to the provider. |
| Method | Path | Description |
|---|---|---|
| POST | /customers | Create a new customer in eCommerce system.With the exception of the 'id' field, the required fields indicated in the 'Customer' model are those required to create a new customer |
| GET | /customers | Find customers in the eCommerce system, using the provided CEQL search expression. If no search expression is provided, all records will be retrieved |
| PATCH | /customers/{id} | Update an customer associated with a given ID in the eCommerce system.The update API uses the PATCH HTTP verb, so only those fields provided in the customer object will be updated, and those fields not provided will be left alone. Updating a customer with a specified ID that does not exist will result in an error response |
| GET | /customers/{id} | Retrieve a customer associated with a given ID from the eCommerce system. Specifying a customer with an ID that does not exist will result in an error response |
| DELETE | /customers/{id} | Delete a customer associated with a given ID from your eCommerce system. Specifying a customer associated with a given ID that does not exist will result in an error message |
| GET | /customers/{id}/orders | Find orders in the customer associated with a given ID. If the customer does not exist, an error response will be returned. If no orders are found in the given customer then an empty array will be returned |
| Method | Path | Description |
|---|---|---|
| GET | /objects | Get a list of all the available objects. |
| GET | /objects/{objectName}/docs | Get swagger docs for an object. |
| GET | /objects/{objectName}/metadata | Get a list of all the fields for an object. |
| Method | Path | Description |
|---|---|---|
| POST | /orders | Create an order in the eCommerce system.With the exception of the 'id' field, the required fields indicated in the 'Order' model are those required to create a new order.The paymentStatus can only be AWAITING_PAYMENT or INCOMPLETE.The fulfillmentStatus can only be AWAITING_PROCESSING |
| GET | /orders | Find orders in the eCommerce system, using the provided CEQL search expression. If no search expression is provided, all records will be retrieved |
| PATCH | /orders/{id} | Update an order associated with a given ID in the eCommerce system. The update API uses the PATCH HTTP verb, so only those fields provided in the order object will be updated, and those fields not provided will be left alone. Updating an order with a specified ID that does not exist will result in an error response |
| GET | /orders/{id} | Retrieve an order associated with a given ID from the eCommerce system. Specifying an order with an ID that does not exist will result in an error response |
| DELETE | /orders/{id} | Delete an order associated with a given ID from your eCommerce system. Specifying an order associated with a given ID that does not exist will result in an error message |
| GET | /orders/{orderId}/payments | Retrieve the payments in the eCommerce system for the specified order |
| GET | /orders/{orderId}/refunds | Retrieve the refunds in the eCommerce system for the specified order |
| Method | Path | Description |
|---|---|---|
| GET | /ping | Ping the element to confirm that the hub element has a heartbeat. If the element does not have a heartbeat, an error message will be returned. |
| Method | Path | Description |
|---|---|---|
| POST | /products | Create a new product in eCommerce system.With the exception of the 'id' field, the required fields indicated in the 'Product' model are those required to create a new product |
| GET | /products | Find products in the eCommerce system, using the provided CEQL search expression. The search expression in CEQL is the WHERE clause in a typical SQL query, but without the WHERE keyword. If no search expression is provided, all records will be retrieved |
| PATCH | /products/{id} | Update a product associated with a given ID in the eCommerce system. The update API uses the PATCH HTTP verb, so only those fields provided in the product object will be updated, and those fields not provided will be left alone. Updating a product with a specified ID that does not exist will result in an error response. Update supports the following fields: sku, quantity, trackQuantity, quantityDelta, warningLimit, name, price, weight, tangible, enabled, fixedShippingRateOnly, fixedShippingRate, description, wholesalePrices, compareAtPrice, productClassId |
| GET | /products/{id} | Retrieve a product associated with a given ID from the eCommerce system. Specifying a product with an ID that does not exist will result in an error response |
| DELETE | /products/{id} | Delete a product associated with a given ID from your eCommerce system. Specifying a product associated with a given ID that does not exist will result in an error message |
| Method | Path | Description |
|---|---|---|
| GET | /{objectName} | Search for {objectName} |
| POST | /{objectName} | Create an {objectName} |
| DELETE | /{objectName}/{objectId} | Delete an {objectName} |
| GET | /{objectName}/{objectId} | Retrieve an {objectName} |
| PATCH | /{objectName}/{objectId} | Update an {objectName} |
| PUT | /{objectName}/{objectId} | Update an {objectName} |
| GET | /{objectName}/{objectId}/{childObjectName} | Search for {childObjectName} |
| POST | /{objectName}/{objectId}/{childObjectName} | Create an {objectName} |
| DELETE | /{objectName}/{objectId}/{childObjectName}/{childObjectId} | Delete an {childObjectName} |
| GET | /{objectName}/{objectId}/{childObjectName}/{childObjectId} | Retrieve an {childObjectName} |
| PATCH | /{objectName}/{objectId}/{childObjectName}/{childObjectId} | Update an {childObjectName} |
| PUT | /{objectName}/{objectId}/{childObjectName}/{childObjectId} | Update an {childObjectName} |
Match user requests to endpoints in references/api-spec.lap. Key patterns:
Generated from the official API spec by LAP