{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pipe17-openclaw-skill",
    "name": "Pipe17 Openclaw Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/j-shao1/pipe17-openclaw-skill",
    "canonicalUrl": "https://clawhub.ai/j-shao1/pipe17-openclaw-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/pipe17-openclaw-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pipe17-openclaw-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/pipe17-openclaw-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/pipe17-openclaw-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/pipe17-openclaw-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pipe17-openclaw-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pipe17-openclaw-skill/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "pipe17",
        "body": "Use the Pipe17 Unified API to search and read core commerce/operations objects.\n\nThis skill focuses on:\n\nSearch + read Orders\nSearch + read Shipping Requests (a.k.a. Shipments)\nSearch + read Fulfillments\nSearch Inventory by SKU (and optionally location)"
      },
      {
        "title": "Setup",
        "body": "Create / obtain a Pipe17 API key for the target organization/integration.\nExport it:\n\nexport PIPE17_API_KEY=\"...\"\n\nKeep the API key secret. Use least-privilege keys whenever possible."
      },
      {
        "title": "API Basics",
        "body": "Base URL (default):\n\nhttps://api-v3.pipe17.com/api/v3\n\nAll requests should include:\n\nX-Pipe17-Key: ${PIPE17_API_KEY}\nAccept: application/json\n\nExample:\n\nP17_BASE=\"https://api-v3.pipe17.com/api/v3\"\n\ncurl \"${P17_BASE}/orders\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\""
      },
      {
        "title": "Search & Filtering",
        "body": "Pipe17 commonly supports server-side filtering via query parameters, often including:\n\nfilters=... (repeatable)\nlimit=...\npage=...\n\nA common filter encoding pattern looks like:\n\nfilters={type}~{field}~{operator}~{value}\n\nExamples of typical patterns:\n\nfilters=string~status~equals~readyForFulfillment\nfilters=string~status~equalsAnyOf~new,onHold,readyForFulfillment\nfilters=date~extOrderCreatedAt~isGreaterThanOrEqualTo~2024-12-31T00:00:00.000Z\n\nIf your tenant uses a different filter grammar, follow the contract in the API doc."
      },
      {
        "title": "Search orders",
        "body": "List orders with optional query parameters.\n\nParameterTypeDescriptioncountinteger (int32)Number of results to returnskipinteger (int32)Number of results to skip (for pagination)extOrderIdarray[string]Filter by external order ID(s)sincestring (date-time)Filter orders since this UTC ISO timestampstatusarray[string]Filter by status(es)\n\nAllowed status values: draft, new, onHold, toBeValidated, reviewRequired, readyForFulfillment, sentToFulfillment, partialFulfillment, fulfilled, inTransit, partialReceived, received, canceled, returned, refunded, archived, closed\n\nP17_BASE=\"https://api-v3.pipe17.com/api/v3\"\n\n# Example: most recent orders (paging)\ncurl \"${P17_BASE}/orders?count=25&skip=0\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by status\ncurl \"${P17_BASE}/orders?count=25&status=new&status=onHold&status=readyForFulfillment\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by date\ncurl \"${P17_BASE}/orders?count=25&since=2024-12-31T00:00:00.000Z\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by external order ID\ncurl \"${P17_BASE}/orders?extOrderId=EXT-12345\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\""
      },
      {
        "title": "Read order by id",
        "body": "The search endpoint returns an orderId for each order. Use it to fetch full order details.\n\nP17_BASE=\"https://api-v3.pipe17.com/api/v3\"\nORDER_ID=\"{orderId}\"\n\ncurl \"${P17_BASE}/orders/${ORDER_ID}\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\""
      },
      {
        "title": "Search shipping requests",
        "body": "List shipping requests with optional query parameters.\n\nParameterTypeDescriptioncountinteger (int32)Number of results to returnskipinteger (int32)Number of results to skip (for pagination)extOrderIdarray[string]Filter by external order ID(s)orderIdarray[string]Filter by Pipe17 order ID(s)locationIdarray[string]Filter by location ID(s)sincestring (date-time)Filter shipping requests since this UTC ISO timestampstatusarray[string]Filter by status(es)\n\nAllowed status values: new, pendingInventory, pendingShippingLabel, reviewRequired, readyForFulfillment, sentToFulfillment, fulfilled, partialFulfillment, canceled, canceledRestock, failed, onHold\n\nP17_BASE=\"https://api-v3.pipe17.com/api/v3\"\n\n# Example: list shipping requests\ncurl \"${P17_BASE}/shipping_requests?count=25&skip=0\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by status\ncurl \"${P17_BASE}/shipping_requests?count=25&status=readyForFulfillment\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by order ID\ncurl \"${P17_BASE}/shipping_requests?count=25&orderId=ORD-12345\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by location\ncurl \"${P17_BASE}/shipping_requests?count=25&locationId=LOC-001\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\""
      },
      {
        "title": "Read shipping request by id",
        "body": "P17_BASE=\"https://api-v3.pipe17.com/api/v3\"\nSHIPPING_REQUEST_ID=\"{shippingRequestId}\"\n\ncurl \"${P17_BASE}/shipping_requests/${SHIPPING_REQUEST_ID}\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\""
      },
      {
        "title": "Fulfillments",
        "body": "Fulfillments represent completed shipment execution with tracking and shipped line items. They are typically treated as immutable once created."
      },
      {
        "title": "Search fulfillments",
        "body": "List fulfillments with optional query parameters.\n\nParameterTypeDescriptioncountinteger (int32)Number of results to returnskipinteger (int32)Number of results to skip (for pagination)extOrderIdarray[string]Filter by external order ID(s)orderIdarray[string]Filter by Pipe17 order ID(s)shipmentIdarray[string]Filter by shipment ID(s)locationIdarray[string]Filter by location ID(s)sincestring (date-time)Filter fulfillments since this UTC ISO timestamp\n\nP17_BASE=\"https://api-v3.pipe17.com/api/v3\"\n\n# Example: list fulfillments\ncurl \"${P17_BASE}/fulfillments?count=25&skip=0\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by order ID\ncurl \"${P17_BASE}/fulfillments?count=25&orderId=ORD-12345\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by shipment ID\ncurl \"${P17_BASE}/fulfillments?count=25&shipmentId=SHIP-001\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by date\ncurl \"${P17_BASE}/fulfillments?count=25&since=2024-12-31T00:00:00.000Z\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\""
      },
      {
        "title": "Read fulfillment by id",
        "body": "P17_BASE=\"https://api-v3.pipe17.com/api/v3\"\nFULFILLMENT_ID=\"{fulfillmentId}\"\n\ncurl \"${P17_BASE}/fulfillments/${FULFILLMENT_ID}\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\""
      },
      {
        "title": "Inventory",
        "body": "Inventory is stored per SKU (and often per location) and may include multiple quantity types (e.g., onHand, available, committed, etc.)."
      },
      {
        "title": "Search inventory",
        "body": "List inventory with optional query parameters.\n\nParameterTypeDescriptioncountinteger (int32)Number of results to returnskipinteger (int32)Number of results to skip (for pagination)skuarray[string]Filter by SKU(s). Mutually exclusive with sku_gt/sku_ltlocationIdarray[string]Filter by location ID(s)sincestring (date-time)Filter inventory created after this UTC ISO timestampavailableintegerFilter where available equals this value. Mutually exclusive with available_gt/available_ltavailable_gtintegerFilter where available is greater than this valueavailable_ltintegerFilter where available is less than this valueonHandintegerFilter where onHand equals this value. Mutually exclusive with onHand_gt/onHand_ltonHand_gtintegerFilter where onHand is greater than this valueonHand_ltintegerFilter where onHand is less than this valuetotalsbooleanReturn inventory totals across all locations (not allowed with ledger flag)ledgerbooleanReturn inventory ledger information (not allowed with totals flag)\n\nDefault behavior: Always send totals=true unless the user specifically requests ledger detail. totals and ledger are mutually exclusive.\n\nP17_BASE=\"https://api-v3.pipe17.com/api/v3\"\n\n# Example: list inventory by SKU (always use totals=true by default)\ncurl \"${P17_BASE}/inventory?count=100&sku=MY-SKU-001&totals=true\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: SKU + location\ncurl \"${P17_BASE}/inventory?count=100&sku=MY-SKU-001&locationId=LOC-001&totals=true\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: find items with zero available\ncurl \"${P17_BASE}/inventory?count=100&available=0&totals=true\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: find items with available > 10\ncurl \"${P17_BASE}/inventory?count=100&available_gt=10&totals=true\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: get ledger detail (only when specifically requested)\ncurl \"${P17_BASE}/inventory?count=100&sku=MY-SKU-001&ledger=true\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\""
      },
      {
        "title": "Read inventory record by inventoryId",
        "body": "P17_BASE=\"https://api-v3.pipe17.com/api/v3\"\nINVENTORY_ID=\"{inventoryId}\"\n\ncurl \"${P17_BASE}/inventory/${INVENTORY_ID}\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\""
      },
      {
        "title": "Notes",
        "body": "Prefer list/search endpoints with pagination (count, skip) for support workflows.\nFavor narrow filters (status/date/sku) to avoid pulling large result sets.\nIf you hit rate limits, implement backoff and retry according to response headers."
      },
      {
        "title": "References",
        "body": "Pipe17 Unified API Docs: https://apidoc.pipe17.com/#/"
      }
    ],
    "body": "name: pipe17 description: Pipe17 Unified API for searching and reading orders, shipping requests (shipments), fulfillments, and inventory. homepage: https://apidoc.pipe17.com/#/ metadata: { \"openclaw\": { \"emoji\": \"🧩\", \"requires\": { \"env\": [\"PIPE17_API_KEY\"] }, \"primaryEnv\": \"PIPE17_API_KEY\" } }\npipe17\n\nUse the Pipe17 Unified API to search and read core commerce/operations objects.\n\nThis skill focuses on:\n\nSearch + read Orders\nSearch + read Shipping Requests (a.k.a. Shipments)\nSearch + read Fulfillments\nSearch Inventory by SKU (and optionally location)\nSetup\nCreate / obtain a Pipe17 API key for the target organization/integration.\nExport it:\nexport PIPE17_API_KEY=\"...\"\n\n\nKeep the API key secret. Use least-privilege keys whenever possible.\n\nAPI Basics\n\nBase URL (default):\n\nhttps://api-v3.pipe17.com/api/v3\n\n\nAll requests should include:\n\nX-Pipe17-Key: ${PIPE17_API_KEY}\nAccept: application/json\n\nExample:\n\nP17_BASE=\"https://api-v3.pipe17.com/api/v3\"\n\ncurl \"${P17_BASE}/orders\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\nSearch & Filtering\n\nPipe17 commonly supports server-side filtering via query parameters, often including:\n\nfilters=... (repeatable)\nlimit=...\npage=...\n\nA common filter encoding pattern looks like:\n\nfilters={type}~{field}~{operator}~{value}\n\n\nExamples of typical patterns:\n\nfilters=string~status~equals~readyForFulfillment\nfilters=string~status~equalsAnyOf~new,onHold,readyForFulfillment\nfilters=date~extOrderCreatedAt~isGreaterThanOrEqualTo~2024-12-31T00:00:00.000Z\n\nIf your tenant uses a different filter grammar, follow the contract in the API doc.\n\nOrders\nSearch orders\n\nList orders with optional query parameters.\n\nParameter\tType\tDescription\ncount\tinteger (int32)\tNumber of results to return\nskip\tinteger (int32)\tNumber of results to skip (for pagination)\nextOrderId\tarray[string]\tFilter by external order ID(s)\nsince\tstring (date-time)\tFilter orders since this UTC ISO timestamp\nstatus\tarray[string]\tFilter by status(es)\n\nAllowed status values: draft, new, onHold, toBeValidated, reviewRequired, readyForFulfillment, sentToFulfillment, partialFulfillment, fulfilled, inTransit, partialReceived, received, canceled, returned, refunded, archived, closed\n\nP17_BASE=\"https://api-v3.pipe17.com/api/v3\"\n\n# Example: most recent orders (paging)\ncurl \"${P17_BASE}/orders?count=25&skip=0\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by status\ncurl \"${P17_BASE}/orders?count=25&status=new&status=onHold&status=readyForFulfillment\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by date\ncurl \"${P17_BASE}/orders?count=25&since=2024-12-31T00:00:00.000Z\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by external order ID\ncurl \"${P17_BASE}/orders?extOrderId=EXT-12345\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\nRead order by id\n\nThe search endpoint returns an orderId for each order. Use it to fetch full order details.\n\nP17_BASE=\"https://api-v3.pipe17.com/api/v3\"\nORDER_ID=\"{orderId}\"\n\ncurl \"${P17_BASE}/orders/${ORDER_ID}\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\nShipping Requests\nSearch shipping requests\n\nList shipping requests with optional query parameters.\n\nParameter\tType\tDescription\ncount\tinteger (int32)\tNumber of results to return\nskip\tinteger (int32)\tNumber of results to skip (for pagination)\nextOrderId\tarray[string]\tFilter by external order ID(s)\norderId\tarray[string]\tFilter by Pipe17 order ID(s)\nlocationId\tarray[string]\tFilter by location ID(s)\nsince\tstring (date-time)\tFilter shipping requests since this UTC ISO timestamp\nstatus\tarray[string]\tFilter by status(es)\n\nAllowed status values: new, pendingInventory, pendingShippingLabel, reviewRequired, readyForFulfillment, sentToFulfillment, fulfilled, partialFulfillment, canceled, canceledRestock, failed, onHold\n\nP17_BASE=\"https://api-v3.pipe17.com/api/v3\"\n\n# Example: list shipping requests\ncurl \"${P17_BASE}/shipping_requests?count=25&skip=0\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by status\ncurl \"${P17_BASE}/shipping_requests?count=25&status=readyForFulfillment\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by order ID\ncurl \"${P17_BASE}/shipping_requests?count=25&orderId=ORD-12345\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by location\ncurl \"${P17_BASE}/shipping_requests?count=25&locationId=LOC-001\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\nRead shipping request by id\nP17_BASE=\"https://api-v3.pipe17.com/api/v3\"\nSHIPPING_REQUEST_ID=\"{shippingRequestId}\"\n\ncurl \"${P17_BASE}/shipping_requests/${SHIPPING_REQUEST_ID}\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\nFulfillments\n\nFulfillments represent completed shipment execution with tracking and shipped line items. They are typically treated as immutable once created.\n\nSearch fulfillments\n\nList fulfillments with optional query parameters.\n\nParameter\tType\tDescription\ncount\tinteger (int32)\tNumber of results to return\nskip\tinteger (int32)\tNumber of results to skip (for pagination)\nextOrderId\tarray[string]\tFilter by external order ID(s)\norderId\tarray[string]\tFilter by Pipe17 order ID(s)\nshipmentId\tarray[string]\tFilter by shipment ID(s)\nlocationId\tarray[string]\tFilter by location ID(s)\nsince\tstring (date-time)\tFilter fulfillments since this UTC ISO timestamp\nP17_BASE=\"https://api-v3.pipe17.com/api/v3\"\n\n# Example: list fulfillments\ncurl \"${P17_BASE}/fulfillments?count=25&skip=0\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by order ID\ncurl \"${P17_BASE}/fulfillments?count=25&orderId=ORD-12345\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by shipment ID\ncurl \"${P17_BASE}/fulfillments?count=25&shipmentId=SHIP-001\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: filter by date\ncurl \"${P17_BASE}/fulfillments?count=25&since=2024-12-31T00:00:00.000Z\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\nRead fulfillment by id\nP17_BASE=\"https://api-v3.pipe17.com/api/v3\"\nFULFILLMENT_ID=\"{fulfillmentId}\"\n\ncurl \"${P17_BASE}/fulfillments/${FULFILLMENT_ID}\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\nInventory\n\nInventory is stored per SKU (and often per location) and may include multiple quantity types (e.g., onHand, available, committed, etc.).\n\nSearch inventory\n\nList inventory with optional query parameters.\n\nParameter\tType\tDescription\ncount\tinteger (int32)\tNumber of results to return\nskip\tinteger (int32)\tNumber of results to skip (for pagination)\nsku\tarray[string]\tFilter by SKU(s). Mutually exclusive with sku_gt/sku_lt\nlocationId\tarray[string]\tFilter by location ID(s)\nsince\tstring (date-time)\tFilter inventory created after this UTC ISO timestamp\navailable\tinteger\tFilter where available equals this value. Mutually exclusive with available_gt/available_lt\navailable_gt\tinteger\tFilter where available is greater than this value\navailable_lt\tinteger\tFilter where available is less than this value\nonHand\tinteger\tFilter where onHand equals this value. Mutually exclusive with onHand_gt/onHand_lt\nonHand_gt\tinteger\tFilter where onHand is greater than this value\nonHand_lt\tinteger\tFilter where onHand is less than this value\ntotals\tboolean\tReturn inventory totals across all locations (not allowed with ledger flag)\nledger\tboolean\tReturn inventory ledger information (not allowed with totals flag)\n\nDefault behavior: Always send totals=true unless the user specifically requests ledger detail. totals and ledger are mutually exclusive.\n\nP17_BASE=\"https://api-v3.pipe17.com/api/v3\"\n\n# Example: list inventory by SKU (always use totals=true by default)\ncurl \"${P17_BASE}/inventory?count=100&sku=MY-SKU-001&totals=true\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: SKU + location\ncurl \"${P17_BASE}/inventory?count=100&sku=MY-SKU-001&locationId=LOC-001&totals=true\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: find items with zero available\ncurl \"${P17_BASE}/inventory?count=100&available=0&totals=true\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: find items with available > 10\ncurl \"${P17_BASE}/inventory?count=100&available_gt=10&totals=true\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\n# Example: get ledger detail (only when specifically requested)\ncurl \"${P17_BASE}/inventory?count=100&sku=MY-SKU-001&ledger=true\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\nRead inventory record by inventoryId\nP17_BASE=\"https://api-v3.pipe17.com/api/v3\"\nINVENTORY_ID=\"{inventoryId}\"\n\ncurl \"${P17_BASE}/inventory/${INVENTORY_ID}\" \\\n  -H \"X-Pipe17-Key: ${PIPE17_API_KEY}\" \\\n  -H \"Accept: application/json\"\n\nNotes\nPrefer list/search endpoints with pagination (count, skip) for support workflows.\nFavor narrow filters (status/date/sku) to avoid pulling large result sets.\nIf you hit rate limits, implement backoff and retry according to response headers.\nReferences\nPipe17 Unified API Docs: https://apidoc.pipe17.com/#/"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/j-shao1/pipe17-openclaw-skill",
    "publisherUrl": "https://clawhub.ai/j-shao1/pipe17-openclaw-skill",
    "owner": "j-shao1",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pipe17-openclaw-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/pipe17-openclaw-skill",
    "agentUrl": "https://openagent3.xyz/skills/pipe17-openclaw-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pipe17-openclaw-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pipe17-openclaw-skill/agent.md"
  }
}