create_webpage_yeepay_payment
Generate a webpage payment order for Yeepay by providing merchant order ID, transaction amount, and product details. Integrates with Yeepay services via the MCP protocol.
Instructions
创建移动支付订单工具
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | 交易金额 | |
goodsName | Yes | 商品名称 | |
orderId | Yes | 商户订单号 | |
userIp | No | 用户IP |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "交易金额",
"type": "number"
},
"goodsName": {
"description": "商品名称",
"type": "string"
},
"orderId": {
"description": "商户订单号",
"type": "string"
},
"userIp": {
"description": "用户IP",
"type": "string"
}
},
"required": [
"orderId",
"amount",
"goodsName"
],
"type": "object"
}