1. 接口规则
为了在保证支付安全的前提下,带给商户简单、一致且易用的开发体验,我们推出了全新的微信支付APIv3接口。该版本API的具体规则请参考APIv3接口规则。
2. 开发准备
2.1. 搭建和配置开发环境
开发者应当依据自身的编程语言来构建并配置相应的开发环境。
3. 快速接入
3.1. 业务流程图
业务流程时序图
重点步骤说明:
步骤2 创建代金券:商户可通过《创建代金券批次》接口创建代金券,微信支付生成代金券批次后并返回代金券批次号给到商户。
步骤7 激活代金券:商户获取到代金券批次号,需要确认并激活代金券,该批次代金券才能发放,需要调用《激活代金券批次》接口来激活创建的代金券。
步骤12 发放代金券:已经激活的代金券,商户可调用微信支付《发放指定批次的代金券》接口来进行代金券发放,并获取微信支付返回代金券发放结果。
步骤17 管理代金券:商户发券成功后,商户可通过《查询批次详情》、《查询代金券详情》等代金券管理接口进行券管理。
3.2. API接入(含示例代码)
文档展示了如何使用微信支付服务端 SDK 快速接入支付有礼,完成与微信支付对接的部分。
3.2.1. 【服务端】创建代金券批次
步骤说明: 通过创建代金券批次接口,可创建代金券的类型包含预充值和免充值两种类型。
background_color取值:
示例代码
JAVA
1public void CreateCoupon() throws Exception{
2
3 HttpPost httpPost = new HttpPost("https://api.mch.weixin.qq.com/v3/marketing/favor/coupon-stocks");
4
5 String reqdata = "{"
6 + "\"stock_name\":\"GD测批次4\","
7 + "\"comment\":\"验证活动\","
8 + "\"belong_merchant\":\"xx98568865xxxx\","
9 + "\"available_begin_time\":\"2020-02-13T18:00:00.120+08:00\","
10 + "\"available_end_time\":\"2020-02-20T23:59:59.120+08:00\","
11 + "\"stock_use_rule\": {"
12 + "\"max_coupons\":10,"
13 + "\"max_amount\":100,"
14 + "\"max_coupons_per_user\":10,"
15 + "\"natural_person_limit\":false,"
16 + "\"prevent_api_abuse\":false"
17 + "},"
18 + "\"coupon_use_rule\": {"
19 + "\"fixed_normal_coupon\": {"
20 + "\"coupon_amount\":10,"
21 + "\"transaction_minimum\":10"
22 + "},"
23 + "\"available_merchants\": ["
24 + "\"0\":\"209784532\","
25 + "\"1\":\"221003827\""
26 + "]"
27 + "},"
28 + "\"no_cash\":false,"
29 + "\"stock_type\":\"NORMAL\","
30 + "\"out_request_no\":\"207662xxxxxx\""
31 + "}";
32 StringEntity entity = new StringEntity(reqdata,"utf-8");
33 entity.setContentType("application/json");
34 httpPost.setEntity(entity);
35 httpPost.setHeader("Accept", "application/json");
36
37 CloseableHttpResponse response = httpClient.execute(httpPost);
38 try {
39 int statusCode = response.getStatusLine().getStatusCode();
40 if (statusCode == 200) {
41 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity()));
42 } else if (statusCode == 204) {
43 System.out.println("success");
44 } else {
45 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity()));
46 throw new IOException("request failed");
47 }
48 } finally {
49 response.close();
50 }
51}
PHP
1try {
2 $resp = $client->request(
3 'POST',
4 'https://api.mch.weixin.qq.com/v3/marketing/favor/coupon-stocks',
5 [
6
7 'json' => [
8 "stock_name" => "GD测批次4",
9 "comment" => "验证活动",
10 "belong_merchant" => "xxx98568865xxx",
11 "available_begin_time" => "2020-02-13T18:00:00.120+08:00",
12 "available_end_time" => "2020-02-20T23:59:59.120+08:00",
13 "stock_use_rule" => [
14 "max_coupons" => 10,
15 "max_amount" => 100,
16 "max_coupons_per_user" => 10,
17 "natural_person_limit" => false,
18 "prevent_api_abuse" => false,
19 ],
20 "coupon_use_rule" => [
21 "fixed_normal_coupon" => [
22 "coupon_amount" => 10,
23 "transaction_minimum" => 10,
24 ],
25 "available_merchants" => [
26 "0" => "209784532",
27 "1" => "221003827",
28 ],
29 ],
30 "no_cash" => false,
31 "stock_type" => "NORMAL",
32 "out_request_no" => "207662xxxxxx",
33 ],
34 'headers' => [ 'Accept' => 'application/json' ]
35 ]
36 );
37 $statusCode = $resp->getStatusCode();
38 if ($statusCode == 200) {
39 echo "success,return body = " . $resp->getBody()->getContents()."\n";
40 } else if ($statusCode == 204) {
41 echo "success";
42 }
43} catch (RequestException $e) {
44
45 echo $e->getMessage()."\n";
46 if ($e->hasResponse()) {
47 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n";
48 }
49 return;
50}
重要入参说明:
校验规则:
更多参数、响应详情及错误码请参见创建代金券批次接口文档
3.2.2. 【服务端】激活代金券批次
步骤说明: 制券成功后,通过调用激活接口激活代金券批次。
示例代码
JAVA
1public void ActiveCoupon() throws Exception{
2
3 HttpPost httpPost = new HttpPost("https://api.mch.weixin.qq.com/v3/marketing/favor/stocks/9856000/start");
4
5 String reqdata = "{"
6 + "\"stock_creator_mchid\":\"8956000\""
7 + "}";
8 StringEntity entity = new StringEntity(reqdata,"utf-8");
9 entity.setContentType("application/json");
10 httpPost.setEntity(entity);
11 httpPost.setHeader("Accept", "application/json");
12
13 CloseableHttpResponse response = httpClient.execute(httpPost);
14 try {
15 int statusCode = response.getStatusLine().getStatusCode();
16 if (statusCode == 200) {
17 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity()));
18 } else if (statusCode == 204) {
19 System.out.println("success");
20 } else {
21 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity()));
22 throw new IOException("request failed");
23 }
24 } finally {
25 response.close();
26 }
27}
PHP
1try {
2 $resp = $client->request(
3 'POST',
4 'https://api.mch.weixin.qq.com/v3/marketing/favor/stocks/9856000/start',
5 [
6
7 'json' => [
8 "stock_creator_mchid" => "8956000",
9 ],
10 'headers' => [ 'Accept' => 'application/json' ]
11 ]
12 );
13 $statusCode = $resp->getStatusCode();
14 if ($statusCode == 200) {
15 echo "success,return body = " . $resp->getBody()->getContents()."\n";
16 } else if ($statusCode == 204) {
17 echo "success";
18 }
19} catch (RequestException $e) {
20
21 echo $e->getMessage()."\n";
22 if ($e->hasResponse()) {
23 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n";
24 }
25 return;
26}
重要入参说明:
更多参数、响应详情及错误码请参见激活代金券批次接口文档
3.2.3. 【服务端】发放代金券批次
步骤说明: 商户平台/API完成制券后,可使用发放代金券接口发券。通过调用此接口可发放指定批次给指定用户,发券场景可以是小程序、H5、App等。
示例代码
JAVA
1public void SendCoupon() throws Exception{
2
3 HttpPost httpPost = new HttpPost("https://api.mch.weixin.qq.com/v3/marketing/favor/users/o4GgauInH_RCEdvrrNGrntXDu6D4/coupons");
4
5 String reqdata = "{"
6 + "\"stock_id\":\"9856000\","
7 + "\"out_request_no\":\"89560002019101000121\","
8 + "\"appid\":\"wx233544546545989\","
9 + "\"stock_creator_mchid\":\"8956000\""
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) {
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
1try {
2 $resp = $client->request(
3 'POST',
4 'https://api.mch.weixin.qq.com/v3/marketing/favor/users/o4GgauInH_RCEdvrrNGrntXDu6D4/coupons',
5 [
6
7 'json' => [
8 "stock_id" => "9856000",
9 "out_request_no" => "89560002019101000121",
10 "appid" => "wx233544546545989",
11 "stock_creator_mchid" => "8956000",
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) {
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}
重要入参说明:
out_trade_no: 商户系统内部订单号,只能是数字、大小写字母_-*且在同一个商户号下唯一
OpenID: OpenID是微信用户在AppID下的唯一用户标识(AppID不同,则获取到的OpenID就不同),可用于永久标记一个用户。OpenID获取方式请参考以下文档小程序获取OpenID、公众号获取OpenID、App获取OpenID
stock_creator_mchid: 批次创建方商户号
stock_id: 微信为每个代金券批次分配的唯一ID。
更多参数、响应详情及错误码请参见发放指定批次的代金券接口文档。
3.2.4. 【服务端】暂停代金券批次
步骤说明: 通过此接口可暂停指定代金券批次。暂停后,该代金券批次暂停发放,用户无法通过任何渠道再领取该批次的券。暂停接口的前提是批次处于激活状态。
示例代码
JAVA
1public void PauseCoupon() throws Exception{
2
3 HttpPost httpPost = new HttpPost("https://api.mch.weixin.qq.com/v3/marketing/favor/stocks/9856000/pause");
4
5 String reqdata = "{"
6 + "\"stock_creator_mchid\":\"8956000\""
7 + "}";
8 StringEntity entity = new StringEntity(reqdata,"utf-8");
9 entity.setContentType("application/json");
10 httpPost.setEntity(entity);
11 httpPost.setHeader("Accept", "application/json");
12
13 CloseableHttpResponse response = httpClient.execute(httpPost);
14 try {
15 int statusCode = response.getStatusLine().getStatusCode();
16 if (statusCode == 200) {
17 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity()));
18 } else if (statusCode == 204) {
19 System.out.println("success");
20 } else {
21 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity()));
22 throw new IOException("request failed");
23 }
24 } finally {
25 response.close();
26 }
27}
PHP
1try {
2 $resp = $client->request(
3 'POST',
4 'https://api.mch.weixin.qq.com/v3/marketing/favor/stocks/9856000/pause',
5 [
6
7 'json' => [
8 "stock_creator_mchid" => "8956000",
9 ],
10 'headers' => [ 'Accept' => 'application/json' ]
11 ]
12 );
13 $statusCode = $resp->getStatusCode();
14 if ($statusCode == 200) {
15 echo "success,return body = " . $resp->getBody()->getContents()."\n";
16 } else if ($statusCode == 204) {
17 echo "success";
18 }
19} catch (RequestException $e) {
20
21 echo $e->getMessage()."\n";
22 if ($e->hasResponse()) {
23 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n";
24 }
25 return;
26}
重要入参说明:
更多参数、响应详情及错误码请参见暂停代金券批次接口文档
3.2.5. 【服务端】重启代金券批次
步骤说明: 通过此接口可重启指定代金券批次。重启后,该代金券批次可以再次发放。重启接口的前提是批次处于暂停状态。
示例代码
JAVA
1public void RestartCoupon() throws Exception{
2
3 HttpPost httpPost = new HttpPost("https://api.mch.weixin.qq.com/v3/marketing/favor/stocks/9856000/restart");
4
5 String reqdata = "{"
6 + "\"stock_creator_mchid\":\"8956000\""
7 + "}";
8 StringEntity entity = new StringEntity(reqdata,"utf-8");
9 entity.setContentType("application/json");
10 httpPost.setEntity(entity);
11 httpPost.setHeader("Accept", "application/json");
12
13 CloseableHttpResponse response = httpClient.execute(httpPost);
14 try {
15 int statusCode = response.getStatusLine().getStatusCode();
16 if (statusCode == 200) {
17 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity()));
18 } else if (statusCode == 204) {
19 System.out.println("success");
20 } else {
21 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity()));
22 throw new IOException("request failed");
23 }
24 } finally {
25 response.close();
26 }
27}
PHP
1try {
2 $resp = $client->request(
3 'POST',
4 'https://api.mch.weixin.qq.com/v3/marketing/favor/stocks/9856000/restart',
5 [
6
7 'json' => [
8 "stock_creator_mchid" => "8956000",
9 ],
10 'headers' => [ 'Accept' => 'application/json' ]
11 ]
12 );
13 $statusCode = $resp->getStatusCode();
14 if ($statusCode == 200) {
15 echo "success,return body = " . $resp->getBody()->getContents()."\n";
16 } else if ($statusCode == 204) {
17 echo "success";
18 }
19} catch (RequestException $e) {
20
21 echo $e->getMessage()."\n";
22 if ($e->hasResponse()) {
23 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n";
24 }
25 return;
26}
重要入参说明:
更多参数、响应详情及错误码请参见重启代金券批次接口文档
3.2.6. 【服务端】条件查询批次列表
步骤说明: 通过此接口可查询多个批次的信息,包括批次的配置信息以及批次概况数据。
示例代码
JAVA
1public void GetStocksList() throws Exception{
2
3 HttpGet httpGet = new HttpGet("https://api.mch.weixin.qq.com/v3/marketing/favor/stocks?offset=1&limit=10&stock_creator_mchid=9856888&create_start_time%3D2015-05-20T13%3A29%3A35.120%2B08%3A00%26create_end_time%3D2015-05-20T13%3A29%3A35.120%2B08%3A00&status=paused");
4 httpGet.setHeader("Accept", "application/json");
5
6 CloseableHttpResponse response = httpClient.execute(httpGet);
7 try {
8 int statusCode = response.getStatusLine().getStatusCode();
9 if (statusCode == 200) {
10 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity()));
11 } else if (statusCode == 204) {
12 System.out.println("success");
13 } else {
14 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity()));
15 throw new IOException("request failed");
16 }
17 } finally {
18 response.close();
19 }
20}
PHP
1try {
2 $resp = $client->request(
3 'GET',
4 'https://api.mch.weixin.qq.com/v3/marketing/favor/stocks?offset=1&limit=10&stock_creator_mchid=9856888&create_start_time%3D2015-05-20T13%3A29%3A35.120%2B08%3A00%26create_end_time%3D2015-05-20T13%3A29%3A35.120%2B08%3A00&status=paused',
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) {
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}
重要入参说明:
更多参数、响应详情及错误码请参见条件查询批次列表接口文档
3.2.7. 【服务端】查询批次详情
步骤说明: 通过此接口可查询批次信息,包括批次的配置信息以及批次概况数据。
示例代码
JAVA
1public void GetStocksInfo() throws Exception{
2
3 HttpGet httpGet = new HttpGet("https://api.mch.weixin.qq.com/v3/marketing/favor/stocks/9856888?stock_creator_mchid=123456");
4 httpGet.setHeader("Accept", "application/json");
5
6 CloseableHttpResponse response = httpClient.execute(httpGet);
7 try {
8 int statusCode = response.getStatusLine().getStatusCode();
9 if (statusCode == 200) {
10 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity()));
11 } else if (statusCode == 204) {
12 System.out.println("success");
13 } else {
14 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity()));
15 throw new IOException("request failed");
16 }
17 } finally {
18 response.close();
19 }
20}
PHP
1try {
2 $resp = $client->request(
3 'GET',
4 'https://api.mch.weixin.qq.com/v3/marketing/favor/stocks/9856888?stock_creator_mchid=123456',
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) {
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}
重要入参说明:
更多参数、响应详情及错误码请参见查询批次详情接口文档
3.2.8. 【服务端】查询代金券详情
步骤说明: 通过此接口可查询代金券信息,包括代金券的基础信息、状态。如代金券已核销,会包括代金券核销的订单信息(订单号、单品信息等)。
示例代码
JAVA
1try {
2 $resp = $client->request(
3 'GET',
4 'https://api.mch.weixin.qq.com/v3/marketing/favor/users/o4GgauInH_RCEdvrrNGrntXDu6D4/coupons/985688?appid=wx233544546545989',
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) {
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}
PHP
1try {
2 $resp = $client->request(
3 'GET',
4 'https://api.mch.weixin.qq.com/v3/marketing/favor/users/o4GgauInH_RCEdvrrNGrntXDu6D4/coupons/985688?appid=wx233544546545989',
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) {
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}
重要入参说明:
更多参数、响应详情及错误码请参见查询代金券详情接口文档
3.2.9. 【服务端】查询代金券可用商户
步骤说明: 通过调用此接口可查询批次的可用商户号,判断券是否在某商户号可用,来决定是否展示。
示例代码
JAVA
1public void GetConponMch() throws Exception{
2
3 HttpGet httpGet = new HttpGet("https://api.mch.weixin.qq.com/v3/marketing/favor/stocks/9865000/merchants?offset=10&limit=10&stock_creator_mchid=1900001111");
4 httpGet.setHeader("Accept", "application/json");
5
6 CloseableHttpResponse response = httpClient.execute(httpGet);
7 try {
8 int statusCode = response.getStatusLine().getStatusCode();
9 if (statusCode == 200) {
10 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity()));
11 } else if (statusCode == 204) {
12 System.out.println("success");
13 } else {
14 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity()));
15 throw new IOException("request failed");
16 }
17 } finally {
18 response.close();
19 }
20}
PHP
1try {
2 $resp = $client->request(
3 'GET',
4 'https://api.mch.weixin.qq.com/v3/marketing/favor/stocks/9865000/merchants?offset=10&limit=10&stock_creator_mchid=1900001111',
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) {
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}
重要入参说明:
更多参数、响应详情及错误码请参见查询代金券可用商户接口文档
3.2.10. 【服务端】查询代金券可用单品
步骤说明: 通过此接口可查询批次的可用商品编码,判断券是否可用于某些商品,来决定是否展示。
示例代码
JAVA
1public void GetConponItem() throws Exception{
2
3 HttpGet httpGet = new HttpGet("https://api.mch.weixin.qq.com/v3/marketing/favor/stocks/9865000/items?offset=10&limit=10&stock_creator_mchid=9865000");
4 httpGet.setHeader("Accept", "application/json");
5
6 CloseableHttpResponse response = httpClient.execute(httpGet);
7 try {
8 int statusCode = response.getStatusLine().getStatusCode();
9 if (statusCode == 200) {
10 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity()));
11 } else if (statusCode == 204) {
12 System.out.println("success");
13 } else {
14 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity()));
15 throw new IOException("request failed");
16 }
17 } finally {
18 response.close();
19 }
20}
PHP
1try {
2 $resp = $client->request(
3 'GET',
4 'https://api.mch.weixin.qq.com/v3/marketing/favor/stocks/9865000/items?offset=10&limit=10&stock_creator_mchid=9865000',
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) {
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}
重要入参说明:
更多参数、响应详情及错误码请参见查询代金券可用单品接口文档
3.2.11. 【服务端】根据商户号查用户的券
步骤说明: 可通过该接口查询用户在某商户号可用的全部券,可用于商户的小程序/H5中,用户"我的代金券"或"提交订单页"展示优惠信息。无法查询到微信支付立减金。本接口查不到用户的微信支付立减金(又称“全平台通用券”),即在所有商户都可以使用的券,例如:摇摇乐红包;当按可用商户号查询时,无法查询用户已经核销的券。
示例代码
JAVA
1public void GetUserConpon() throws Exception{
2
3 HttpGet httpGet = new HttpGet("https://api.mch.weixin.qq.com/v3/marketing/favor/users/o4GgauInH_RCEdvrrNGrntXDu6D4/coupons?appid=wx233544546545989");
4 httpGet.setHeader("Accept", "application/json");
5
6 CloseableHttpResponse response = httpClient.execute(httpGet);
7 try {
8 int statusCode = response.getStatusLine().getStatusCode();
9 if (statusCode == 200) {
10 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity()));
11 } else if (statusCode == 204) {
12 System.out.println("success");
13 } else {
14 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity()));
15 throw new IOException("request failed");
16 }
17 } finally {
18 response.close();
19 }
20}
PHP
1try {
2 $resp = $client->request(
3 'GET',
4 'https://api.mch.weixin.qq.com/v3/marketing/favor/users/o4GgauInH_RCEdvrrNGrntXDu6D4/coupons?appid=wx233544546545989',
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) {
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}
重要入参说明:
stock_creator_mchid: 批次创建方商户号
stock_id: 微信为每个代金券批次分配的唯一ID。
OpenID: OpenID是微信用户在AppID下的唯一用户标识(AppID不同,则获取到的OpenID就不同),可用于永久标记一个用户。OpenID获取方式请参考以下文档小程序获取OpenID、公众号获取OpenID、App获取OpenID
coupon_id: 微信为代金券唯一分配的ID。
更多参数、响应详情及错误码请参见根据商户号查用户的券接口文档
3.2.12. 【服务端】下载批次核销明细
步骤说明: 可获取到某批次的核销明细数据,包括订单号、单品信息、银行流水号等,用于对账/数据分析。
示例代码
JAVA
1public void UseBill() throws Exception{
2
3 HttpGet httpGet = new HttpGet("https://api.mch.weixin.qq.com/v3/marketing/favor/stocks/9865000/use-flow");
4 httpGet.setHeader("Accept", "application/json");
5
6 CloseableHttpResponse response = httpClient.execute(httpGet);
7 try {
8 int statusCode = response.getStatusLine().getStatusCode();
9 if (statusCode == 200) {
10 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity()));
11 } else if (statusCode == 204) {
12 System.out.println("success");
13 } else {
14 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity()));
15 throw new IOException("request failed");
16 }
17 } finally {
18 response.close();
19 }
20}
PHP
1try {
2 $resp = $client->request(
3 'GET',
4 'https://api.mch.weixin.qq.com/v3/marketing/favor/stocks/9865000/use-flow',
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) {
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}
重要入参说明:
更多参数、响应详情及错误码请参见下载批次核销明细接口文档
3.2.13. 【服务端】下载批次退款明细
步骤说明: 可获取到某批次的退款明细数据,包括订单号、单品信息、银行流水号等,用于对账/数据分析。
示例代码
JAVA
1public void RefundBill() throws Exception{
2
3 HttpGet httpGet = new HttpGet("https://api.mch.weixin.qq.com/v3/marketing/favor/stocks/9865000/refund-flow");
4 httpGet.setHeader("Accept", "application/json");
5
6 CloseableHttpResponse response = httpClient.execute(httpGet);
7 try {
8 int statusCode = response.getStatusLine().getStatusCode();
9 if (statusCode == 200) {
10 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity()));
11 } else if (statusCode == 204) {
12 System.out.println("success");
13 } else {
14 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity()));
15 throw new IOException("request failed");
16 }
17 } finally {
18 response.close();
19 }
20}
PHP
1try {
2 $resp = $client->request(
3 'GET',
4 'https://api.mch.weixin.qq.com/v3/marketing/favor/stocks/9865000/refund-flow',
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) {
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}
重要入参说明:
更多参数、响应详情及错误码请参见下载批次退款明细接口文档
3.2.14. 【服务端】设置消息通知地址
步骤说明: 用于设置接收营销事件通知的URL,可接收营销相关的事件通知,包括核销、发放、退款等。
示例代码
JAVA
1public void SetCouponCallback() throws Exception{
2
3 HttpPost httpPost = new HttpPost("https://api.mch.weixin.qq.com/v3/marketing/favor/callbacks");
4
5 String reqdata = "{"
6 + "\"mchid\":\"9856888\","
7 + "\"notify_url\":\"https://pay.weixin.qq.com\""
8 + "}";
9 StringEntity entity = new StringEntity(reqdata,"utf-8");
10 entity.setContentType("application/json");
11 httpPost.setEntity(entity);
12 httpPost.setHeader("Accept", "application/json");
13
14 CloseableHttpResponse response = httpClient.execute(httpPost);
15 try {
16 int statusCode = response.getStatusLine().getStatusCode();
17 if (statusCode == 200) {
18 System.out.println("success,return body = " + EntityUtils.toString(response.getEntity()));
19 } else if (statusCode == 204) {
20 System.out.println("success");
21 } else {
22 System.out.println("failed,resp code = " + statusCode+ ",return body = " + EntityUtils.toString(response.getEntity()));
23 throw new IOException("request failed");
24 }
25 } finally {
26 response.close();
27 }
28}
PHP
1try {
2 $resp = $client->request(
3 'POST',
4 'https://api.mch.weixin.qq.com/v3/marketing/favor/callbacks',
5 [
6
7 'json' => [
8 "mchid" => "9856888",
9 "notify_url" => "https://pay.weixin.qq.com",
10 ],
11 'headers' => [ 'Accept' => 'application/json' ]
12 ]
13 );
14 $statusCode = $resp->getStatusCode();
15 if ($statusCode == 200) {
16 echo "success,return body = " . $resp->getBody()->getContents()."\n";
17 } else if ($statusCode == 204) {
18 echo "success";
19 }
20} catch (RequestException $e) {
21
22 echo $e->getMessage()."\n";
23 if ($e->hasResponse()) {
24 echo "failed,resp code = " . $e->getResponse()->getStatusCode() . " return body = " . $e->getResponse()->getBody() . "\n";
25 }
26 return;
27}
重要入参说明:
更多参数、响应详情及错误码请参见设置代金券消息通知地址接口文档
3.2.15. 【服务端】核销事件回调通知
步骤说明: 用户使用券后,微信会把相关核销券信息发送给商户,商户需要接收处理,并按照文档规范返回应答。出于安全的考虑,我们对核销券信息数据进行了加密,商户需要先对通知数据进行解密,才能得到核销券信息数据。
| 注意 核销券信息通知是以POST 方法访问商户设置的通知URL,通知的数据以JSON 格式通过请求主体(BODY)传输。通知的数据包括了加密的支付结果详情 加密不能保证通知请求来自微信。微信会对发送给商户的通知进行签名,并将签名值放在通知的HTTP头Wechatpay-Signature。商户应当验证签名,以确认请求来自微信,而不是其他的第三方。签名验证的算法请参考 《微信支付API v3签名验证》。 支付通知HTTP应答码为200或204才会当作正常接收,当回调处理异常时,应答的HTTP状态码应为500,或者4xx 商户成功接收到回调通知后应返回成功的HTTP应答码为200或204 同样的通知可能会多次发送给商户系统。商户系统必须能够正确处理重复的通知。 推荐的做法是,当商户系统收到通知进行处理时,先检查对应业务数据的状态,并判断该通知是否已经处理。如果未处理,则再进行处理;如果已处理,则直接返回结果成功。在对业务数据进行状态检查和处理之前,要采用数据锁进行并发控制,以避免函数重入造成的数据混乱 对后台通知交互时,如果微信收到应答不是成功或超时,微信认为通知失败,微信会通过一定的策略定期重新发起通知,尽可能提高通知的成功率,但微信不保证通知最终能成功。(通知频率为1min1次,总计9次)
|
|
更多参数、响应详情及错误码请参见核销事件回调通知支付通知API接口文档
4. 常见问题
Q:创建代金券接口报错:“你配置的信息需要开通特殊权限”
A:请按以下步骤进行排查
stock_name:最多可填写9个字
max_coupons_per_user:单天发放个数上限不能为0
coupon_amount:10<=coupon_amount<=100000
available_time_after_receive:可用时间:相对时间,按分钟设置,是否1min<=分钟范围<=1440min
transaction_minimum校验规则:
使用门槛-券面额>=0.01(门槛要大于面额)
0.1元<=门槛<=100000
stock_type:目前只支持NORMAL
out_request_no:校验规则:不可以重复
开始时间结束时间控制在90天内
不可使用的时间参数不可以传递
Q:创建代金券报错“批次预算等于批次面额乘以发券数”
A:请按以下步骤进行排查
max_amount需要等于coupon_amount(面额) * max_coupons(发放总上限)
核对最终请求数据,并查看是否存在遗漏数据,建议使用postman进行调试
Q:创建代金券报错“活动未开始或已结束”
A:活动时间不能大于90天,请检查available_begin_time、available_end_time参数设置是否符合要求。
Q:激活代金券API,如果大于1min或者更久还报错“系统繁忙”?
A:请检查单个可用商户号下正在运营的活动是否控制在500个以内,若超过500个活动可能导致新活动激活失败的情况。
Q:设置消息通知地址报错“系统繁忙”
A:请按以下步骤进行排查
请检查notify_url设置是否正确,notify_url必须为HTTPS
notify_url地址为一个可访问的地址
notify_url不能携带参数。示例:https://pay.wechatpay.cn/wxpay/pay.action