ワンクリックで
x402-merchant-products
Create and manage x402 merchant products, rotate API keys, view payment dashboards, and list settlement history.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create and manage x402 merchant products, rotate API keys, view payment dashboards, and list settlement history.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Meta-skill that indexes all AIOT platform skills and routes agent requests to the correct sub-skill.
Merchant registration, login, OTP verification, token refresh, and session management for the x402 payment protocol.
x402 payment protocol proxy — create orders, request payment parameters, verify signatures, settle on-chain, and query facilitator capabilities.
Know-Your-Customer verification via MasterPay Global. Submit personal data, upload identity documents, and track approval status.
Account signup, login via email/OTP/wallet/biometric, token refresh, password reset, and session management.
Decentralized identity (DID) management, on-chain KYC status, and membership tiers with token staking.
| name | x402 Merchant Products |
| description | Create and manage x402 merchant products, rotate API keys, view payment dashboards, and list settlement history. |
| version | 1.0.0 |
| metadata | {"openclaw":{"requires":{"env":["AIOT_API_BASE_URL"]},"primaryEnv":"AIOT_API_BASE_URL"}} |
Use this skill when a merchant needs to create products, manage API keys, view payment dashboards, or browse settlement history.
All product endpoints require a Bearer JWT obtained from the x402 Merchant Auth skill.
The default API base URL is https://payment-api-dev.aiotnetwork.io. All endpoints are relative to this URL.
To override (e.g. for local development):
export AIOT_API_BASE_URL="http://localhost:8080"
If AIOT_API_BASE_URL is not set, use https://payment-api-dev.aiotnetwork.io as the base for all requests.
create_product — Create a new product and receive an API key | POST /api/v1/x402/products | Requires authlist_products — List all products for the current merchant | GET /api/v1/x402/products | Requires authget_product — Get details of a specific product | GET /api/v1/x402/products/:id | Requires authget_product_dashboard — Get payment stats and analytics for a product | GET /api/v1/x402/products/:id/dashboard | Requires authrotate_api_key — Rotate a product's API key | POST /api/v1/x402/products/:id/api-key/rotate | Requires authlist_settlements — List settlement records for a product | GET /api/v1/x402/products/:id/settlements | Requires authFollow these instructions when executing this skill:
Always follow the documented flow order. Do not skip steps.
If a tool requires authentication, verify the session has a valid Bearer token before calling it.
Never expose, log, or persist secrets (passwords, tokens, API keys).
If the user requests an operation outside this skill's scope, decline and suggest the appropriate skill.
If a step fails, check the error and follow the recovery guidance below before retrying.
When creating a product, always remind the merchant to save the api_key — it is shown only once and cannot be retrieved later.
When rotating an API key, warn the merchant that the old key will be immediately invalidated and all integrations using it will stop working.
Use list_products to help the merchant find a product ID before calling product-specific endpoints.
For dashboard queries, suggest date ranges (start_date, end_date) to help the merchant narrow results.
For settlement lists, use search to find specific transactions by tx hash, payer address, or order ID.
The api_key returned by create_product or rotate_api_key is needed as the X-API-Key header for the x402 Merchant Payments skill.
If the merchant needs to use the API key for payments, direct them to the x402 Merchant Payments skill.