# 检查场景值是否在支付校验范围内(待废弃)
接口待废弃,请使用下单前置校验基础库接口
# 接口调用请求说明
微信后台会对符合支付校验范围内的场景值下的收银台进行支付(ticket/订单信息)校验
http请求方式:POST
https://api.weixin.qq.com/shop/scene/check?access_token=xxxxxxxxx
# 请求参数示例
{
"scene": 1175
}
# 回包示例
{
"errcode": 0,
"errmsg":"ok",
"is_matched": 1
}
# 请求参数说明
参数 | 类型 | 是否必填 | 说明 |
---|---|---|---|
scene | number | 是 | 场景值 |
# 回包参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
is_matched | enum | 是否需要支付校验,1:需要,0:不需要 |
requiredFundType | enum | require_order = 1时生效,0,非二级商户号订单,1,二级商户号订单,2,两种方式皆可(后续只会存在1) |