开发指引
更新时间:2024.11.151. 接口规则
为了在保证支付安全的前提下,带给商户简单、一致且易用的开发体验,我们推出了全新的微信支付APIv3接口。该版本API的具体规则请参考APIv3接口规则。
2. 开发准备
2.1. 搭建和配置开发环境
开发者应当依据自身的编程语言来构建并配置相应的开发环境。
2.2. 业务开发配置
2.2.1. 开通营销事件推送能力
开通营销事件推送能力说明:
用于设置接收商家券相关事件通知的URL,可接收商家券相关的事件通知、包括发放通知等。需要设置接收通知的URL,并在商户平台开通营销事件推送的能力,即可接收到相关通知。
营销事件推送:点击开通产品权限。 由商家券批次创建方登录Pay平台,操作开通
3. 快速接入
3.1. 业务流程图
业务流程时序图
重点步骤说明:
步骤1 商户发起创建商家券请求,可通过《创建商家券》接口创建商家券,微信支付生成商家券批次后并返回商家券批次号给到商户。
请求参数商户logo(merchant_url)的内容要求使用图片上传(营销专用)接口上传后获取
步骤4.2 商户获取到商家券批次号,需要调用《小程序发券插件》来发放商户券,并获取微信支付返回商家券发放结果。
步骤7.2 商户发券成功后,商户可通过《查询商家券批次详情》、《根据过滤条件查询用户的券》、《查询用户券详情》等商家券管理接口进行券管理,商户需核销用户券时,可通过调用《核销用户的券》来核销用户微信卡包中具体某一张商家券。
3.2. API接入(含示例代码)
文档展示了如何使用微信支付服务端 SDK 快速接入商家券产品,完成与微信支付对接的部分。
|
3.2.1. 【服务端】创建商家券
步骤说明: 通过此接口可为有需求的商户创建商家券。当前支持创建的商家券类型包含满减券、换购券和折扣券三种。
卡券背景颜色图:
商家券样式图:
券详情信息展示:
java
1示例代码 2public void CreateBusiStocks() throws Exception{ 3 //请求URL 4 HttpPost httpPost = new HttpPost("https://api.mch.weixin.qq.com/v3/marketing/busifavor/stocks"); 5 // 请求body参数 6 String reqdata = "{" 7 + "\"stock_name\":\"8月1日活动券\"," 8 + "\"belong_merchant\":\"1900008361\"," 9 + "\"comment\":\"活动使用\"," 10 + "\"goods_name\":\"填写代金券可适用的商品或服务\"," 11 + "\"stock_type\":\"NORMAL\"," 12 + "\"coupon_use_rule\": {" 13 + "\"coupon_available_time\": {" 14 + "\"available_begin_time\":\"2021-04-20T13:29:35+08:00\"," 15 + "\"available_end_time\":\"2021-04-25T13:29:35+08:00\"," 16 + "\"available_day_after_receive\":3," 17 + "\"wait_days_after_receive\":7" 18 + "}," 19 + "\"fixed_normal_coupon\": {" 20 + "\"discount_amount\":5," 21 + "\"transaction_minimum\":100" 22 + "}," 23 + "\"use_method\":\"OFF_LINE\"" 24 + "}," 25 + "\"stock_send_rule\": {" 26 + "\"max_coupons\":100," 27 + "\"max_coupons_per_user\":5," 28 + "\"max_coupons_by_day\":100," 29 + "\"natural_person_limit\":false," 30 + "\"prevent_api_abuse\":false," 31 + "\"transferable\":false," 32 + "\"shareable\":false" 33 + "}," 34 + "\"out_request_no\":\"100002322019090134234sfdf\"," 35 + "\"coupon_code_mode\":\"WECHATPAY_MODE\"" 36 + "}"; 37 StringEntity entity = new StringEntity(reqdata,"utf-8"); 38 entity.setContentType("application/json"); 39 httpPost.setEntity(entity); 40 httpPost.setHeader("Accept", "application/json"); 41 //完成签名并执行请求 42 CloseableHttpResponse response = httpClient.execute(httpPost); 43 try { 44 int statusCode = response.getStatusLine().getStatusCode(); 45 if (statusCode == 200) { //处理成功 46 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity())); 47 } else if (statusCode == 204) { //处理成功,无返回Body 48 System.out.println("success"); 49 } else { 50 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity())); 51 throw new IOException("request failed"); 52 } 53 } finally { 54 response.close(); 55 } 56}
PHP
1示例代码 2 try { 3 $resp = $client->request( 4 'POST', 5 'https://api.mch.weixin.qq.com/v3/marketing/busifavor/stocks', //请求URL 6 [ 7 // JSON请求体 8 'json' => [ 9 "stock_name" => "8月1日活动券", 10 "belong_merchant" => "10000098", 11 "comment" => "活动使用", 12 "goods_name" => "填写代金券可适用的商品或服务", 13 "stock_type" => "NORMAL", 14 "coupon_use_rule" => [ 15 "coupon_available_time" => [ 16 "available_begin_time" => "2015-05-20T13:29:35+08:00", 17 "available_end_time" => "2015-05-20T13:29:35+08:00", 18 "available_day_after_receive" => 3, 19 "wait_days_after_receive" => 7, 20 "available_week" => [ 21 "week_day" => [ 22 "0" => 1, 23 "1" => 2, 24 ], 25 "available_day_time" => [ 26 [ 27 "begin_time" => 3600, 28 "end_time" => 86399, 29 ], 30 ], 31 ], 32 "irregulary_avaliable_time" => [ 33 [ 34 "begin_time" => "2015-05-20T13:29:35+08:00", 35 "end_time" => "2015-05-20T13:29:35+08:00", 36 ], 37 ], 38 ], 39 "fixed_normal_coupon" => [ 40 "discount_amount" => 5, 41 "transaction_minimum" => 100, 42 ], 43 "use_method" => "OFF_LINE", 44 "mini_programs_appid" => "wx23232232323", 45 "mini_programs_path" => "/path/index/index", 46 ], 47 "stock_send_rule" => [ 48 "max_coupons" => 100, 49 "max_coupons_per_user" => 5, 50 "max_coupons_by_day" => 100, 51 "natural_person_limit" => false, 52 "prevent_api_abuse" => false, 53 "transferable" => false, 54 "shareable" => false, 55 ], 56 "out_request_no" => "100002322019090134234sfdf", 57 "custom_entrance" => [ 58 "mini_programs_info" => [ 59 "mini_programs_appid" => "wx234545656765876", 60 "mini_programs_path" => "/path/index/index", 61 "entrance_words" => "欢迎选购", 62 "guiding_words" => "获取更多优惠", 63 ], 64 "appid" => "wx324345hgfhfghfg", 65 "hall_id" => "233455656", 66 "store_id" => "233554655", 67 ], 68 "display_pattern_info" => [ 69 "description" => "xxx门店可用", 70 "merchant_logo_url" => "https://xxx", 71 "merchant_name" => "微信支付", 72 "background_color" => "Color020", 73 "coupon_image_url" => "https://qpic.cn/xxx", 74 ], 75 "coupon_code_mode" => "WECHATPAY_MODE", 76 ], 77 'headers' => [ 'Accept' => 'application/json' ] 78 ] 79 ); 80 $statusCode = $resp->getStatusCode(); 81 if ($statusCode == 200) { //处理成功 82 echo "success,return body = " . $resp->getBody()->getContents()."\n"; 83 } else if ($statusCode == 204) { //处理成功,无返回Body 84 echo "success"; 85 } 86} catch (RequestException $e) { 87 // 进行错误处理 88 echo $e->getMessage()."\n"; 89 if ($e->hasResponse()) { 90 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n"; 91 } 92 return; 93}
重要入参说明:
belong_merchant: 批次归属商户号,批次归属于哪个商户。普通商户请填写普通商户号。
out_request_no: 商户请求单号,商户创建批次凭据号(格式:商户ID+日期+流水号),商户侧需保持唯一性。
max_coupons: 批次最大发放个数,批次最大可发放个数限制。特殊规则:取值范围 1 ≤ value ≤ 1000000000。
notify_appid: 事件通知AppID,用于回调通知时,计算返回操作用户的OpenID(诸如领券用户),支持小程序or公众号的AppID;如该字段不填写,则回调通知中涉及到用户身份信息的OpenID与unionid都将为空。
更多参数、响应详情及错误码请参见创建商家券接口文档。
3.2.2. 【服务端】查询商家券批次详情
步骤说明: 商户可通过该接口查询已创建的商家券批次详情信息。
卡券背景颜色图:
java
1示例代码 2public void GetBusiStocksInfo() throws Exception{ 3 //请求URL 4 HttpGet httpGet = new HttpGet("https://api.mch.weixin.qq.com/v3/marketing/busifavor/stocks/1212"); 5 httpGet.setHeader("Accept", "application/json"); 6 //完成签名并执行请求 7 CloseableHttpResponse response = httpClient.execute(httpGet); 8 try { 9 int statusCode = response.getStatusLine().getStatusCode(); 10 if (statusCode == 200) { //处理成功 11 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity())); 12 } else if (statusCode == 204) { //处理成功,无返回Body 13 System.out.println("success"); 14 } else { 15 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity())); 16 throw new IOException("request failed"); 17 } 18 } finally { 19 response.close(); 20 } 21}
PHP
1示例代码 2 try { 3 $resp = $client->request( 4 'GET', 5 'https://api.mch.weixin.qq.com/v3/marketing/busifavor/stocks/1212', //请求URL 6 [ 7 'headers' => [ 'Accept' => 'application/json'] 8 ] 9 ); 10 $statusCode = $resp->getStatusCode(); 11 if ($statusCode == 200) { //处理成功 12 echo "success,return body = " . $resp->getBody()->getContents()."\n"; 13 } else if ($statusCode == 204) { //处理成功,无返回Body 14 echo "success"; 15 } 16} catch (RequestException $e) { 17 // 进行错误处理 18 echo $e->getMessage()."\n"; 19 if ($e->hasResponse()) { 20 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n"; 21 } 22 return; 23}
重要入参说明:
stock_id: 批次号,微信为每个商家券批次分配的唯一ID。
更多参数、响应详情及错误码请参见查询商家券批次详情接口文档。
3.2.3. 【服务端】核销用户的券
步骤说明: 在用户满足优惠门槛后,商户可通过该接口核销用户微信卡包中具体某一张商家券。
Java
1示例代码 2public void SetBusiStockUse() throws Exception{ 3 //请求URL 4 HttpPost httpPost = new HttpPost("https://api.mch.weixin.qq.com/v3/marketing/busifavor/coupons/use"); 5 // 请求body参数 6 String reqdata = "{" 7 + "\"coupon_code\":\"sxxe34343434\"," 8 + "\"stock_id\":\"100088\"," 9 + "\"appid\":\"wx1234567889999\"," 10 + "\"use_time\":\"2015-05-20T13:29:35+08:00\"," 11 + "\"use_request_no\":\"1002600620019090123143254435\"," 12 + "\"openid\":\"xsd3434454567676\"" 13 + "}"; 14 StringEntity entity = new StringEntity(reqdata,"utf-8"); 15 entity.setContentType("application/json"); 16 httpPost.setEntity(entity); 17 httpPost.setHeader("Accept", "application/json"); 18 //完成签名并执行请求 19 CloseableHttpResponse response = httpClient.execute(httpPost); 20 try { 21 int statusCode = response.getStatusLine().getStatusCode(); 22 if (statusCode == 200) { //处理成功 23 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity())); 24 } else if (statusCode == 204) { //处理成功,无返回Body 25 System.out.println("success"); 26 } else { 27 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity())); 28 throw new IOException("request failed"); 29 } 30 } finally { 31 response.close(); 32 } 33}
PHP
1示例代码 2 try { 3 $resp = $client->request( 4 'POST', 5 'https://api.mch.weixin.qq.com/v3/marketing/busifavor/coupons/use', //请求URL 6 [ 7 // JSON请求体 8 'json' => [ 9 "coupon_code" => "sxxe34343434", 10 "stock_id" => "100088", 11 "appid" => "wx1234567889999", 12 "use_time" => "2015-05-20T13:29:35+08:00", 13 "use_request_no" => "1002600620019090123143254435", 14 "openid" => "xsd3434454567676", 15 ], 16 'headers' => [ 'Accept' => 'application/json' ] 17 ] 18 ); 19 $statusCode = $resp->getStatusCode(); 20 if ($statusCode == 200) { //处理成功 21 echo "success,return body = " . $resp->getBody()->getContents()."\n"; 22 } else if ($statusCode == 204) { //处理成功,无返回Body 23 echo "success"; 24 } 25} catch (RequestException $e) { 26 // 进行错误处理 27 echo $e->getMessage()."\n"; 28 if ($e->hasResponse()) { 29 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n"; 30 } 31 return; 32}
重要入参说明:
coupon_code: 券code,券的唯一标识。
AppID: 公众账号ID,支持传入与当前调用接口商户号有绑定关系的AppID。支持小程序AppID与公众号AppID。核销接口返回的OpenID会在该传入AppID下进行计算获得。
use_request_no: 核销请求单据号,每次核销请求的唯一标识,商户需保证唯一。
更多参数、响应详情及错误码请参见核销用户的券接口文档。
3.2.4. 【服务端】根据过滤条件查询用户券
步骤说明: 商户自定义筛选条件(如创建商户号、归属商户号、发放商户号等),查询指定微信用户卡包中满足对应条件的所有商家券信息。
Java
1示例代码 2public void FilterUserStocks() throws Exception{ 3 //请求URL 4 HttpGet httpGet = new HttpGet("https://api.mch.weixin.qq.com/v3/marketing/busifavor/users/o4GgauInH_RCEdvrrNGrntXDu6D4/coupons?appid=wx233544546545989&stock_id=9865000&coupon_state=USED&creator_merchant=1000000001&offset=0&limit=20"); 5 httpGet.setHeader("Accept", "application/json"); 6 //完成签名并执行请求 7 CloseableHttpResponse response = httpClient.execute(httpGet); 8 try { 9 int statusCode = response.getStatusLine().getStatusCode(); 10 if (statusCode == 200) { //处理成功 11 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity())); 12 } else if (statusCode == 204) { //处理成功,无返回Body 13 System.out.println("success"); 14 } else { 15 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity())); 16 throw new IOException("request failed"); 17 } 18 } finally { 19 response.close(); 20 } 21}
PHP
1示例代码 2 try { 3 $resp = $client->request( 4 'GET', 5 'https://api.mch.weixin.qq.com/v3/marketing/busifavor/users/o4GgauInH_RCEdvrrNGrntXDu6D4/coupons?appid=wx233544546545989&stock_id=9865000&coupon_state=USED&creator_merchant=1000000001&offset=0&limit=20', //请求URL 6 [ 7 'headers' => [ 'Accept' => 'application/json'] 8 ] 9 ); 10 $statusCode = $resp->getStatusCode(); 11 if ($statusCode == 200) { //处理成功 12 echo "success,return body = " . $resp->getBody()->getContents()."\n"; 13 } else if ($statusCode == 204) { //处理成功,无返回Body 14 echo "success"; 15 } 16} catch (RequestException $e) { 17 // 进行错误处理 18 echo $e->getMessage()."\n"; 19 if ($e->hasResponse()) { 20 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n"; 21 } 22 return; 23}
重要入参说明:
OpenID: 用户标识,OpenID信息,用户在AppID下的唯一标识。
AppID: 公众账号ID,支持传入与当前调用接口商户号有绑定关系的AppID。支持小程序AppID与公众号AppID。
更多参数、响应详情及错误码请参见根据过滤条件查询用户的券接口文档。
3.2.5. 【服务端】查询用户券详情
步骤说明: 商户可通过该接口查询微信用户卡包中某一张商家券的详情信息。
Java
1示例代码 2public void FilterUserStocks() throws Exception{ 3 //请求URL 4 HttpGet httpGet = new HttpGet("https://api.mch.weixin.qq.com/v3/marketing/busifavor/users/o4GgauInH_RCEdvrrNGrntXDu6D4/coupons/123446565767/appids/wx233544546545989"); 5 httpGet.setHeader("Accept", "application/json"); 6 //完成签名并执行请求 7 CloseableHttpResponse response = httpClient.execute(httpGet); 8 try { 9 int statusCode = response.getStatusLine().getStatusCode(); 10 if (statusCode == 200) { //处理成功 11 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity())); 12 } else if (statusCode == 204) { //处理成功,无返回Body 13 System.out.println("success"); 14 } else { 15 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity())); 16 throw new IOException("request failed"); 17 } 18 } finally { 19 response.close(); 20 } 21}
PHP
1示例代码 2 try { 3 $resp = $client->request( 4 'GET', 5 'https://api.mch.weixin.qq.com/v3/marketing/busifavor/users/o4GgauInH_RCEdvrrNGrntXDu6D4/coupons/123446565767/appids/wx233544546545989', //请求URL 6 [ 7 'headers' => [ 'Accept' => 'application/json'] 8 ] 9 ); 10 $statusCode = $resp->getStatusCode(); 11 if ($statusCode == 200) { //处理成功 12 echo "success,return body = " . $resp->getBody()->getContents()."\n"; 13 } else if ($statusCode == 204) { //处理成功,无返回Body 14 echo "success"; 15 } 16} catch (RequestException $e) { 17 // 进行错误处理 18 echo $e->getMessage()."\n"; 19 if ($e->hasResponse()) { 20 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n"; 21 } 22 return; 23}
重要入参说明:
coupon_code: 券code,券的唯一标识。
OpenID: 用户标识,OpenID信息,用户在AppID下的唯一标识。
AppID: 公众账号ID,支持传入与当前调用接口商户号有绑定关系的AppID。支持小程序AppID与公众号AppID。
更多参数、响应详情及错误码请参见查询用户券详情接口文档。
3.2.6. 【服务端】上传预存code
步骤说明: 商家券的Code码可由微信后台随机分配,同时支持商户自定义。如商家已有自己的优惠券系统,可直接使用自定义模式。即商家预先向微信支付上传券Code,当券在发放时,微信支付自动从已导入的Code中随机取值(不能指定),派发给用户。
Java
1示例代码 2public void UploadBusiStockCodes() throws Exception{ 3 //请求URL 4 HttpPost httpPost = new HttpPost("https://api.mch.weixin.qq.com/v3/marketing/busifavor/stocks/98065001/couponcodes"); 5 // 请求body参数 6 String reqdata = "{" 7 + "\"coupon_code_list\": [" 8 + "\"0\":\"ABC9588200\"," 9 + "\"1\":\"ABC9588201\"" 10 + "]," 11 + "\"upload_request_no\":\"100002322019090134234sfdf\"" 12 + "}"; 13 StringEntity entity = new StringEntity(reqdata,"utf-8"); 14 entity.setContentType("application/json"); 15 httpPost.setEntity(entity); 16 httpPost.setHeader("Accept", "application/json"); 17 //完成签名并执行请求 18 CloseableHttpResponse response = httpClient.execute(httpPost); 19 try { 20 int statusCode = response.getStatusLine().getStatusCode(); 21 if (statusCode == 200) { //处理成功 22 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity())); 23 } else if (statusCode == 204) { //处理成功,无返回Body 24 System.out.println("success"); 25 } else { 26 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity())); 27 throw new IOException("request failed"); 28 } 29 } finally { 30 response.close(); 31 } 32}
PHP
1示例代码 2 try { 3 $resp = $client->request( 4 'POST', 5 'https://api.mch.weixin.qq.com/v3/marketing/busifavor/stocks/98065001/couponcodes', //请求URL 6 [ 7 // JSON请求体 8 'json' => [ 9 "coupon_code_list" => [ 10 "0" => "ABC9588200", 11 "1" => "ABC9588201", 12 ], 13 "upload_request_no" => "100002322019090134234sfdf", 14 ], 15 'headers' => [ 'Accept' => 'application/json' ] 16 ] 17 ); 18 $statusCode = $resp->getStatusCode(); 19 if ($statusCode == 200) { //处理成功 20 echo "success,return body = " . $resp->getBody()->getContents()."\n"; 21 } else if ($statusCode == 204) { //处理成功,无返回Body 22 echo "success"; 23 } 24} catch (RequestException $e) { 25 // 进行错误处理 26 echo $e->getMessage()."\n"; 27 if ($e->hasResponse()) { 28 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n"; 29 } 30 return; 31}
重要入参说明:
stock_id: 批次号,微信为每个商家券批次分配的唯一ID。
upload_request_no: 请求业务单据号,商户上传code的凭据号,商户侧需保持唯一性。
更多参数、响应详情及错误码请参见上传预存code接口文档。
3.2.7. 【服务端】设置商家券事件通知地址
步骤说明: 用于设置接收商家券相关事件通知的URL,可接收商家券相关的事件通知、包括发放通知等。需要设置接收通知的URL,并在商户平台开通营销事件推送的能力,即可接收到相关通知。
|
Java
1示例代码 2public void SetBusiStockCallback() throws Exception{ 3 //请求URL 4 HttpPost httpPost = new HttpPost("https://api.mch.weixin.qq.com/v3/marketing/busifavor/callbacks"); 5 // 请求body参数 6 String reqdata = "{" 7 + "\"mchid\":\"10000098\"," 8 + "\"notify_url\":\"https://pay.weixin.qq.com\"" 9 + "}"; 10 StringEntity entity = new StringEntity(reqdata,"utf-8"); 11 entity.setContentType("application/json"); 12 httpPost.setEntity(entity); 13 httpPost.setHeader("Accept", "application/json"); 14 //完成签名并执行请求 15 CloseableHttpResponse response = httpClient.execute(httpPost); 16 try { 17 int statusCode = response.getStatusLine().getStatusCode(); 18 if (statusCode == 200) { //处理成功 19 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity())); 20 } else if (statusCode == 204) { //处理成功,无返回Body 21 System.out.println("success"); 22 } else { 23 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity())); 24 throw new IOException("request failed"); 25 } 26 } finally { 27 response.close(); 28 } 29}
PHP
1示例代码 2 try { 3 $resp = $client->request( 4 'POST', 5 'https://api.mch.weixin.qq.com/v3/marketing/busifavor/callbacks', //请求URL 6 [ 7 // JSON请求体 8 'json' => [ 9 "mchid" => "10000098", 10 "notify_url" => "https://pay.weixin.qq.com", 11 ], 12 'headers' => [ 'Accept' => 'application/json' ] 13 ] 14 ); 15 $statusCode = $resp->getStatusCode(); 16 if ($statusCode == 200) { //处理成功 17 echo "success,return body = " . $resp->getBody()->getContents()."\n"; 18 } else if ($statusCode == 204) { //处理成功,无返回Body 19 echo "success"; 20 } 21} catch (RequestException $e) { 22 // 进行错误处理 23 echo $e->getMessage()."\n"; 24 if ($e->hasResponse()) { 25 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n"; 26 } 27 return; 28}
重要入参说明:
notify_url: 通知URL地址,商户提供的用于接收商家券事件通知的URL地址,必须支持HTTPS。
更多参数、响应详情及错误码请参见设置商家券事件通知地址接口文档。
3.2.8. 【服务端】查询商家券事件通知地址
步骤说明: 通过调用此接口可查询设置的通知URL。
|
Java
1示例代码 2public void QueryBusiStockCallback() throws Exception { 3 4 //请求URL 5 HttpGet httpGet = new HttpGet("https://api.mch.weixin.qq.com/v3/marketing/busifavor/callbacks?mchid=10000098"); 6 httpGet.setHeader("Accept", "application/json"); 7 //完成签名并执行请求 8 CloseableHttpResponse response = httpClient.execute(httpGet); 9 try { 10 int statusCode = response.getStatusLine().getStatusCode(); 11 if (statusCode == 200) { //处理成功 12 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity())); 13 } else if (statusCode == 204) { //处理成功,无返回Body 14 System.out.println("success"); 15 } else { 16 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity())); 17 throw new IOException("request failed"); 18 } 19 } finally { 20 response.close(); 21 } 22}
PHP
1try { 2 $resp = $client->request( 3 'GET', 4 'https://api.mch.weixin.qq.com/v3/marketing/busifavor/callbacks?mchid=10000098', //请求URL 5 [ 6 'headers' => [ 'Accept' => 'application/json'] 7 ] 8 ); 9 $statusCode = $resp->getStatusCode(); 10 if ($statusCode == 200) { //处理成功 11 echo "success,return body = " . $resp->getBody()->getContents()."\n"; 12 } else if ($statusCode == 204) { //处理成功,无返回Body 13 echo "success"; 14 } 15} catch (RequestException $e) { 16 // 进行错误处理 17 echo $e->getMessage()."\n"; 18 if ($e->hasResponse()) { 19 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n"; 20 } 21 return; 22}
重要入参说明:
mchid: 商户号,微信支付商户的商户号,由微信支付生成并下发,不填默认查询调用方商户的通知URL。
更多参数、响应详情及错误码请参见查询商家券事件通知地址接口文档。
3.2.9. 【服务端】关联订单信息
步骤说明: 将有效态(未核销)的商家券与订单信息关联,用于后续参与摇奖&返佣激励等操作的统计。
|
Java
1示例代码 2public void AssociateBusiStockOrder() throws Exception{ 3 //请求URL 4 HttpPost httpPost = new HttpPost("https://api.mch.weixin.qq.com/v3/marketing/busifavor/coupons/associate"); 5 // 请求body参数 6 String reqdata = "{" 7 + "\"coupon_code\":\"sxxe34343434\"," 8 + "\"out_trade_no\":\"MCH_102233445\"," 9 + "\"stock_id\":\"100088\"," 10 + "\"out_request_no\":\"1002600620019090123143254435\"" 11 + "}"; 12 StringEntity entity = new StringEntity(reqdata,"utf-8"); 13 entity.setContentType("application/json"); 14 httpPost.setEntity(entity); 15 httpPost.setHeader("Accept", "application/json"); 16 //完成签名并执行请求 17 CloseableHttpResponse response = httpClient.execute(httpPost); 18 try { 19 int statusCode = response.getStatusLine().getStatusCode(); 20 if (statusCode == 200) { //处理成功 21 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity())); 22 } else if (statusCode == 204) { //处理成功,无返回Body 23 System.out.println("success"); 24 } else { 25 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity())); 26 throw new IOException("request failed"); 27 } 28 } finally { 29 response.close(); 30 } 31}
PHP
1示例代码 2 try { 3 $resp = $client->request( 4 'POST', 5 'https://api.mch.weixin.qq.com/v3/marketing/busifavor/coupons/associate', //请求URL 6 [ 7 // JSON请求体 8 'json' => [ 9 "coupon_code" => "sxxe34343434", 10 "out_trade_no" => "MCH_102233445", 11 "stock_id" => "100088", 12 "out_request_no" => "1002600620019090123143254435", 13 ], 14 'headers' => [ 'Accept' => 'application/json' ] 15 ] 16 ); 17 $statusCode = $resp->getStatusCode(); 18 if ($statusCode == 200) { //处理成功 19 echo "success,return body = " . $resp->getBody()->getContents()."\n"; 20 } else if ($statusCode == 204) { //处理成功,无返回Body 21 echo "success"; 22 } 23} catch (RequestException $e) { 24 // 进行错误处理 25 echo $e->getMessage()."\n"; 26 if ($e->hasResponse()) { 27 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n"; 28 } 29 return; 30}
重要入参说明:
stock_id: 批次号,微信为每个商家券批次分配的唯一ID。
coupon_code: 券code,券的唯一标识。
out_trade_no: 关联的商户订单号,微信支付下单时的商户订单号,预与该商家券关联的微信支付。
out_request_no: 商户请求单号,商户创建批次凭据号(格式:商户ID+日期+流水号),商户侧需保持唯一性,可包含英文字母,数字,|,_,*,-等内容,不允许出现其他不合法符号。
更多参数、响应详情及错误码请参见关联订单信息接口文档。
3.2.10. 【服务端】取消关联订单信息
步骤说明: 取消商家券与订单信息的关联关系。
|
Java
1示例代码 2public void CancelAssociateBusiStockOrder() throws Exception { 3//请求URL 4 HttpPost httpPost = new HttpPost("https://api.mch.weixin.qq.com/v3/marketing/busifavor/coupons/disassociate"); 5 // 请求body参数 6 String reqdata = "{" 7 + "\"coupon_code\":\"213dsadfsa\"," 8 + "\"out_trade_no\":\"treads8a9f980\"," 9 + "\"stock_id\":\"100088\"," 10 + "\"out_request_no\":\"fdsafdsafdsa231321\"" 11 + "}"; 12 StringEntity entity = new StringEntity(reqdata,"utf-8"); 13 entity.setContentType("application/json"); 14 httpPost.setEntity(entity); 15 httpPost.setHeader("Accept", "application/json"); 16 //完成签名并执行请求 17 CloseableHttpResponse response = httpClient.execute(httpPost); 18 try { 19 int statusCode = response.getStatusLine().getStatusCode(); 20 if (statusCode == 200) { //处理成功 21 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity())); 22 } else if (statusCode == 204) { //处理成功,无返回Body 23 System.out.println("success"); 24 } else { 25 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity())); 26 throw new IOException("request failed"); 27 } 28 } finally { 29 response.close(); 30 } 31}
PHP
1示例代码 2 try { 3 $resp = $client->request( 4 'POST', 5 'https://api.mch.weixin.qq.com/v3/marketing/busifavor/coupons/disassociate', //请求URL 6 [ 7 // JSON请求体 8 'json' => [ 9 "coupon_code" => "213dsadfsa", 10 "out_trade_no" => "treads8a9f980", 11 "stock_id" => "100088", 12 "out_request_no" => "fdsafdsafdsa231321", 13 ], 14 'headers' => [ 'Accept' => 'application/json' ] 15 ] 16 ); 17 $statusCode = $resp->getStatusCode(); 18 if ($statusCode == 200) { //处理成功 19 echo "success,return body = " . $resp->getBody()->getContents()."\n"; 20 } else if ($statusCode == 204) { //处理成功,无返回Body 21 echo "success"; 22 } 23} catch (RequestException $e) { 24 // 进行错误处理 25 echo $e->getMessage()."\n"; 26 if ($e->hasResponse()) { 27 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n"; 28 } 29 return; 30}
重要入参说明:
stock_id: 批次号,微信为每个商家券批次分配的唯一ID。
coupon_code: 券code,券的唯一标识。
out_trade_no: 关联的商户订单号,微信支付下单时的商户订单号,预与该商家券关联的微信支付。
out_request_no: 商户请求单号,商户创建批次凭据号(格式:商户ID+日期+流水号),商户侧需保持唯一性,可包含英文字母,数字,|,_,*,-等内容,不允许出现其他不合法符号。
更多参数、响应详情及错误码请参见取消关联订单信息接口文档。
3.2.11. 【服务端】修改批次预算
步骤说明: 商户可以通过该接口修改批次单天发放上限数量或者批次最大发放数量。
Java
1示例代码 2public void UpdataBusiStockBudget() throws Exception{ 3 //请求URL 4 HttpPatch httpPatch = new HttpPatch("https://api.mch.weixin.qq.com/v3/marketing/busifavor/stocks/98065001/budget"); 5 // 请求body参数 6 String reqdata = "{" 7 + "\"target_max_coupons\":3000," 8 + "\"current_max_coupons\":500," 9 + "\"modify_budget_request_no\":\"1002600620019090123143254436\"" 10 + "}"; 11 StringEntity entity = new StringEntity(reqdata,"utf-8"); 12 entity.setContentType("application/json"); 13 httpPatch.setEntity(entity); 14 httpPatch.setHeader("Accept", "application/json"); 15 //完成签名并执行请求 16 CloseableHttpResponse response = httpClient.execute(httpPatch); 17 try { 18 int statusCode = response.getStatusLine().getStatusCode(); 19 if (statusCode == 200) { //处理成功 20 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity())); 21 } else if (statusCode == 204) { //处理成功,无返回Body 22 System.out.println("success"); 23 } else { 24 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity())); 25 throw new IOException("request failed"); 26 } 27 } finally { 28 response.close(); 29 } 30}
PHP
1示例代码 2 try { 3 $resp = $client->request( 4 'PATCH', 5 'https://api.mch.weixin.qq.com/v3/marketing/busifavor/stocks/98065001/budget', //请求URL 6 [ 7 // JSON请求体 8 'json' => [ 9 "target_max_coupons" => 3000, 10 "current_max_coupons" => 500, 11 "modify_budget_request_no" => "1002600620019090123143254436", 12 ], 13 'headers' => [ 'Accept' => 'application/json' ] 14 ] 15 ); 16 $statusCode = $resp->getStatusCode(); 17 if ($statusCode == 200) { //处理成功 18 echo "success,return body = " . $resp->getBody()->getContents()."\n"; 19 } else if ($statusCode == 204) { //处理成功,无返回Body 20 echo "success"; 21 } 22} catch (RequestException $e) { 23 // 进行错误处理 24 echo $e->getMessage()."\n"; 25 if ($e->hasResponse()) { 26 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n"; 27 } 28 return; 29}
重要入参说明:
stock_id: 批次号,微信为每个商家券批次分配的唯一ID。
modify_budget_request_no: 修改预算请求单据号(格式:商户ID+日期+流水号),商户侧需保持唯一性。
更多参数、响应详情及错误码请参见修改批次预算接口文档。
3.2.12. 【服务端】修改商家券基本信息
步骤说明: 商户可以通过该接口修改商家券基本信息。
Java
1示例代码 2public void UpdataBusiStockInfo() throws Exception{ 3 //请求URL 4 HttpPatch httpPatch = new HttpPatch("https://api.mch.weixin.qq.com/v3/marketing/busifavor/stocks/101156451224"); 5 // 请求body参数 6 String reqdata = "{" 7 + "\"custom_entrance\": {" 8 + "\"mini_programs_info\": {" 9 + "\"mini_programs_appid\":\"wx234545656765876\"," 10 + "\"mini_programs_path\":\"/path/index/index\"," 11 + "\"entrance_words\":\"欢迎选购\"," 12 + "\"guiding_words\":\"获取更多优惠\"" 13 + "}," 14 + "\"appid\":\"wx324345hgfhfghfg\"," 15 + "\"hall_id\":\"233455656\"," 16 + "\"code_display_mode\":\"BARCODE\"" 17 + "}," 18 + "\"stock_name\":\"8月1日活动券\"," 19 + "\"comment\":\"活动使用\"," 20 + "\"goods_name\":\"xxx商品使用\"," 21 + "\"out_request_no\":\"6122352020010133287985742\"," 22 + "\"display_pattern_info\": {" 23 + "\"description\":\"xxx门店可用\"," 24 + "\"merchant_logo_url\":\"https://xxx\"," 25 + "\"merchant_name\":\"微信支付\"," 26 + "\"background_color\":\"xxxxx\"," 27 + "\"coupon_image_url\":\"图片cdn地址\"" 28 + "}," 29 + "\"coupon_use_rule\": {" 30 + "\"use_method\":\"OFF_LINE\"," 31 + "\"mini_programs_appid\":\"wx23232232323\"," 32 + "\"mini_programs_path\":\"/path/index/index\"" 33 + "}," 34 + "\"stock_send_rule\": {" 35 + "\"prevent_api_abuse\":false" 36 + "}," 37 + "\"notify_config\": {" 38 + "\"notify_appid\":\"wx23232232323\"" 39 + "}" 40 + "}"; 41 StringEntity entity = new StringEntity(reqdata,"utf-8"); 42 entity.setContentType("application/json"); 43 httpPatch.setEntity(entity); 44 httpPatch.setHeader("Accept", "application/json"); 45 //完成签名并执行请求 46 CloseableHttpResponse response = httpClient.execute(httpPatch); 47 try { 48 int statusCode = response.getStatusLine().getStatusCode(); 49 if (statusCode == 200) { //处理成功 50 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity())); 51 } else if (statusCode == 204) { //处理成功,无返回Body 52 System.out.println("success"); 53 } else { 54 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity())); 55 throw new IOException("request failed"); 56 } 57 } finally { 58 response.close(); 59 } 60}
PHP
1示例代码 2 try { 3 $resp = $client->request( 4 'PATCH', 5 'https://api.mch.weixin.qq.com/v3/marketing/busifavor/stocks/101156451224', //请求URL 6 [ 7 // JSON请求体 8 'json' => [ 9 "custom_entrance" => [ 10 "mini_programs_info" => [ 11 "mini_programs_appid" => "wx234545656765876", 12 "mini_programs_path" => "/path/index/index", 13 "entrance_words" => "欢迎选购", 14 "guiding_words" => "获取更多优惠", 15 ], 16 "appid" => "wx324345hgfhfghfg", 17 "hall_id" => "233455656", 18 "code_display_mode" => "BARCODE", 19 ], 20 "stock_name" => "8月1日活动券", 21 "comment" => "活动使用", 22 "goods_name" => "xxx商品使用", 23 "out_request_no" => "6122352020010133287985742", 24 "display_pattern_info" => [ 25 "description" => "xxx门店可用", 26 "merchant_logo_url" => "https://xxx", 27 "merchant_name" => "微信支付", 28 "background_color" => "xxxxx", 29 "coupon_image_url" => "图片cdn地址", 30 ], 31 "coupon_use_rule" => [ 32 "use_method" => "OFF_LINE", 33 "mini_programs_appid" => "wx23232232323", 34 "mini_programs_path" => "/path/index/index", 35 ], 36 "stock_send_rule" => [ 37 "prevent_api_abuse" => false, 38 ], 39 "notify_config" => [ 40 "notify_appid" => "wx23232232323", 41 ] 42 ], 43 'headers' => [ 'Accept' => 'application/json' ] 44 ] 45 ); 46 $statusCode = $resp->getStatusCode(); 47 if ($statusCode == 200) { //处理成功 48 echo "success,return body = " . $resp->getBody()->getContents()."\n"; 49 } else if ($statusCode == 204) { //处理成功,无返回Body 50 echo "success"; 51 } 52} catch (RequestException $e) { 53 // 进行错误处理 54 echo $e->getMessage()."\n"; 55 if ($e->hasResponse()) { 56 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n"; 57 } 58 return; 59}
重要入参说明:
stock_id: 批次号,微信为每个商家券批次分配的唯一ID。
out_request_no: 商户请求单号,商户修改批次凭据号(格式:商户ID+日期+流水号),商户侧需保持唯一性。
更多参数、响应详情及错误码请参见修改商家券基本信息接口文档。
3.2.13. 【服务端】申请退券
步骤说明: 商户可以通过该接口为已核销的券申请退券。
Java
1示例代码 2public void ReturnBusiStock() throws Exception{ 3 //请求URL 4 HttpPost httpPost = new HttpPost("https://api.mch.weixin.qq.com/v3/marketing/busifavor/coupons/return"); 5 // 请求body参数 6 String reqdata = "{" 7 + "\"coupon_code\":\"sxxe34343434\"," 8 + "\"stock_id\":\"1234567891\"," 9 + "\"return_request_no\":\"1002600620019090123143254436\"" 10 + "}"; 11 StringEntity entity = new StringEntity(reqdata,"utf-8"); 12 entity.setContentType("application/json"); 13 httpPost.setEntity(entity); 14 httpPost.setHeader("Accept", "application/json"); 15 //完成签名并执行请求 16 CloseableHttpResponse response = httpClient.execute(httpPost); 17 try { 18 int statusCode = response.getStatusLine().getStatusCode(); 19 if (statusCode == 200) { //处理成功 20 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity())); 21 } else if (statusCode == 204) { //处理成功,无返回Body 22 System.out.println("success"); 23 } else { 24 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity())); 25 throw new IOException("request failed"); 26 } 27 } finally { 28 response.close(); 29 } 30}
PHP
1示例代码 2 try { 3 $resp = $client->request( 4 'POST', 5 'https://api.mch.weixin.qq.com/v3/marketing/busifavor/coupons/return', //请求URL 6 [ 7 // JSON请求体 8 'json' => [ 9 "coupon_code" => "sxxe34343434", 10 "stock_id" => "1234567891", 11 "return_request_no" => "1002600620019090123143254436", 12 ], 13 'headers' => [ 'Accept' => 'application/json' ] 14 ] 15 ); 16 $statusCode = $resp->getStatusCode(); 17 if ($statusCode == 200) { //处理成功 18 echo "success,return body = " . $resp->getBody()->getContents()."\n"; 19 } else if ($statusCode == 204) { //处理成功,无返回Body 20 echo "success"; 21 } 22} catch (RequestException $e) { 23 // 进行错误处理 24 echo $e->getMessage()."\n"; 25 if ($e->hasResponse()) { 26 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n"; 27 } 28 return; 29}
重要入参说明:
stock_id: 批次号,微信为每个商家券批次分配的唯一ID
coupon_code: 券code,券的唯一标识。
return_request_no: 退券请求单据号,每次退券请求的唯一标识,商户需保证唯一。
更多参数、响应详情及错误码请参见申请退券接口文档。
3.2.14. 【服务端】使券失效
步骤说明: 商户可通过该接口将单张领取后未核销的券进行失效处理。
Java
1示例代码 2public void DeactivateBusiStock() throws Exception{ 3 //请求URL 4 HttpPost httpPost = new HttpPost("https://api.mch.weixin.qq.com/v3/marketing/busifavor/coupons/deactivate"); 5 // 请求body参数 6 String reqdata = "{" 7 + "\"coupon_code\":\"sxxe34343434\"," 8 + "\"stock_id\":\"1234567891\"," 9 + "\"deactivate_request_no\":\"1002600620019090123143254436\"," 10 + "\"deactivate_reason\":\"此券使用时间设置错误\"" 11 + "}"; 12 StringEntity entity = new StringEntity(reqdata,"utf-8"); 13 entity.setContentType("application/json"); 14 httpPost.setEntity(entity); 15 httpPost.setHeader("Accept", "application/json"); 16 //完成签名并执行请求 17 CloseableHttpResponse response = httpClient.execute(httpPost); 18 try { 19 int statusCode = response.getStatusLine().getStatusCode(); 20 if (statusCode == 200) { //处理成功 21 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity())); 22 } else if (statusCode == 204) { //处理成功,无返回Body 23 System.out.println("success"); 24 } else { 25 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity())); 26 throw new IOException("request failed"); 27 } 28 } finally { 29 response.close(); 30 } 31}
PHP
1示例代码 2 try { 3 $resp = $client->request( 4 'POST', 5 'https://api.mch.weixin.qq.com/v3/marketing/busifavor/coupons/deactivate', //请求URL 6 [ 7 // JSON请求体 8 'json' => [ 9 "coupon_code" => "sxxe34343434", 10 "stock_id" => "1234567891", 11 "deactivate_request_no" => "1002600620019090123143254436", 12 "deactivate_reason" => "此券使用时间设置错误", 13 ], 14 'headers' => [ 'Accept' => 'application/json' ] 15 ] 16 ); 17 $statusCode = $resp->getStatusCode(); 18 if ($statusCode == 200) { //处理成功 19 echo "success,return body = " . $resp->getBody()->getContents()."\n"; 20 } else if ($statusCode == 204) { //处理成功,无返回Body 21 echo "success"; 22 } 23} catch (RequestException $e) { 24 // 进行错误处理 25 echo $e->getMessage()."\n"; 26 if ($e->hasResponse()) { 27 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n"; 28 } 29 return; 30}
重要入参说明:
stock_id: 批次号,微信为每个商家券批次分配的唯一ID。
coupon_code: 券code,券的唯一标识。
deactivate_request_no: 失效请求单据号,每次失效请求的唯一标识,商户需保证唯一。
更多参数、响应详情及错误码请参见使券失效接口文档。
3.2.15.【服务端】领券事件回调通知
步骤说明: 领券完成后,微信会把相关领券结果和用户信息发送给商户,商户需要接收处理,并按照文档规范返回应答。出于安全的考虑,我们对支付结果数据进行了加密,商户需要先对通知数据进行解密,才能得到支付结果数据。
|
更多参数、响应详情及错误码请参见 领券事件回调通知接口文档。
4. 常见问题
Q:调用创建商家券接口返回“非法敏感图片”
A:请求参数商户logo(merchant_url)的内容要求使用图片上传(营销专用)接口上传后获取,请检查确认。
Q:创建商家券接口,goods_name字段展示在哪里?
A:展示在商家券详情里面的优惠说明中。
Q:调用修改商家券基本信息API返回:无法将输入源“/body/stock_id”映射到目标字段“批次号”中,此字段并非多重字段但被输入源“/uri_template/stock_id”映射过了
A:请注意参数stock_id传到请求URL里面,body里面就不用传该参数。
Q:商家券领券回调,正常设置地址,为什么接收不到回调信息?
A:请按以下几点检查
请检查是否有正确设置APIv3。设置步骤如下: 【微信商户平台—>账户设置—>API安全—>设置APIv3】
请检查回调URL是否能正常公网访问
如果是HTTP地址,建议更换支持HTTPS
是否开启了防火墙,如果开户了防火墙,请添加微信支付营销回调IP:
上海电信出口网段 101.226.103.0/2
上海联通出口网段 140.207.54.0/25
上海CAP出口网段 121.51.58.128/25
Q:商家券消费门槛字段transaction_minimum不填写为什么会报错?
A:该字段属于必填字段,可以填写为0。