2026-06-24 f4bd1f3c89d906131495a0aca5aaf82966378510
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
### /pay/create 提交支付订单【alipay_pc】
POST {{appApi}}/pay/order/submit
Content-Type: application/json
Authorization: Bearer {{appToken}}
tenant-id: {{appTenantId}}
 
{
  "id": 174,
  "channelCode": "alipay_pc"
}
 
### /pay/create 提交支付订单【wx_bar】
POST {{appApi}}/pay/order/submit
Content-Type: application/json
Authorization: Bearer {{appToken}}
tenant-id: {{appTenantId}}
 
{
  "id": 202,
  "channelCode": "wx_bar",
  "channelExtras": {
    "authCode": "134042110834344848"
  }
}
 
### /pay/create 提交支付订单【wx_pub】
POST {{appApi}}/pay/order/submit
Content-Type: application/json
Authorization: Bearer {{appToken}}
tenant-id: {{appTenantId}}
 
{
  "id": 202,
  "channelCode": "wx_pub",
  "channelExtras": {
    "openid": "ockUAwIZ-0OeMZl9ogcZ4ILrGba0"
  }
}
 
### /pay/create 提交支付订单【wx_lite】
POST {{appApi}}/pay/order/submit
Content-Type: application/json
Authorization: Bearer {{appToken}}
tenant-id: {{appTenantId}}
 
{
  "id": 202,
  "channelCode": "wx_lite",
  "channelExtras": {
    "openid": "oLefc4g5GjKWHJjLjMSXB3wX0fD0"
  }
}
 
### /pay/create 提交支付订单【wx_native】
POST {{appApi}}/pay/order/submit
Content-Type: application/json
Authorization: Bearer {{appToken}}
tenant-id: {{appTenantId}}
 
{
  "id": 202,
  "channelCode": "wx_native"
}