query_yeepay_payment_status
Check the status of Yeepay payments by querying with the merchant order ID to verify transaction details and ensure accurate payment processing.
Instructions
查询支付状态工具
Input Schema
Name | Required | Description | Default |
---|---|---|---|
orderId | Yes | 商户订单号 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"orderId": {
"description": "商户订单号",
"type": "string"
}
},
"required": [
"orderId"
],
"type": "object"
}