# 订单状态查询

# 接口地址

https://open.weidoufu.com/pay/query (opens new window)

请求方式:GET

# 接口参数

名称 字段类型 必填参数 说明
mch_trade_no string(32) 平台订单号 或 商户订单号 必须有一个
out_order_no string(32) 商户订单号(字母、数字,至少 18 位长度)

温馨提示:

  • mch_trade_noout_order_no 任意一个参数都可以

# 返回参数

名称 字段类型 必有 说明
code int 1:成功   0:失败
message string 返回描述信息
mch_trade_no string 平台返回的订单号
out_order_no string 商户订单号(字母、数字)
notify int 通知状态:1-待通知;2-成功;3-失败;
status int 支付状态:1-待支付;2-成功;3-失败;

返回结果示例:

{
  code: 1,
  data: {
    mch_trade_no: "202105134699973515066771",
    notify: 1,
    out_order_no: "u200138039201620898294",
    status: 1,
    message: "查询成功"
  },
  status: "success"
}
最后更新于: 1/11/2024, 10:57:30 PM