订单查询接口
注意:所有参数和返回值均使用“utf-8”编码。
用来主动查询订单是否支付成功,一般情况只用支付接口即可。
接口URL:
https://pay.iermei.com
传参方式:Get
请求参数:
# | 参数名 | 含义 | 类型 | 说明 |
---|---|---|---|---|
1 | pid | 商户PID | string | 必填。在后台【API接口】获取 |
2 | order | 商户订单号 | string | 必填。 |
3 | sign | 签名 | string(32) | 必填。md5(pid=10001&order=123456&接口密钥) |
返回值(Json字符串)
内容:
- {"status": "success"} //订单已支付已经回调成功 - {"status": "not_exist"} //订单不存在 - {"status": "unpay"} //未支付 - {"status": "expire"} //订单过期 - {"status": "payed"} //订单已支付未回调 - {"status": "fee_error"} //账户余额不足扣除手续费失败,订单未回调 - {"status": "sign_error"} //签名错误