fix typo: adminTenentId -> adminTenantId, appTenentId -> appTenantId
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
### 获得商品 SPU 明细
|
||||
GET {{baseUrl}}/product/spu/get-detail?id=4
|
||||
Authorization: Bearer {{token}}
|
||||
tenant-id: {{adminTenentId}}
|
||||
tenant-id: {{adminTenantId}}
|
||||
|
@@ -1,18 +1,18 @@
|
||||
### 获得订单交易的分页(默认)
|
||||
GET {{appApi}}/product/spu/page?pageNo=1&pageSize=10
|
||||
Authorization: Bearer {{appToken}}
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
|
||||
### 获得订单交易的分页(价格)
|
||||
GET {{appApi}}/product/spu/page?pageNo=1&pageSize=10&sortField=price&sortAsc=true
|
||||
Authorization: Bearer {{appToken}}
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
|
||||
### 获得订单交易的分页(销售)
|
||||
GET {{appApi}}/product/spu/page?pageNo=1&pageSize=10&sortField=salesCount&sortAsc=true
|
||||
Authorization: Bearer {{appToken}}
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
|
||||
### 获得商品 SPU 明细
|
||||
GET {{appApi}}/product/spu/get-detail?id=102
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
|
@@ -2,4 +2,4 @@
|
||||
GET {{appApi}}/promotion/activity/list-by-spu-ids?spuIds=222&spuIds=633
|
||||
Authorization: Bearer {{appToken}}
|
||||
Content-Type: application/json
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
|
@@ -2,7 +2,7 @@
|
||||
POST {{appApi}}/promotion/bargain-help/create
|
||||
Authorization: Bearer test248
|
||||
Content-Type: application/json
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
|
||||
{
|
||||
"recordId": 26
|
||||
|
@@ -2,7 +2,7 @@
|
||||
POST {{appApi}}/promotion/bargain-record/create
|
||||
Authorization: Bearer {{appToken}}
|
||||
Content-Type: application/json
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
|
||||
{
|
||||
"activityId": 1
|
||||
|
@@ -1,18 +1,18 @@
|
||||
### 获得交易售后分页 => 成功
|
||||
GET {{baseUrl}}/trade/after-sale/page?pageNo=1&pageSize=10
|
||||
Authorization: Bearer {{token}}
|
||||
tenant-id: {{adminTenentId}}
|
||||
tenant-id: {{adminTenantId}}
|
||||
|
||||
### 同意售后 => 成功
|
||||
PUT {{baseUrl}}/trade/after-sale/agree?id=7
|
||||
Authorization: Bearer {{token}}
|
||||
tenant-id: {{adminTenentId}}
|
||||
tenant-id: {{adminTenantId}}
|
||||
Content-Type: application/json
|
||||
|
||||
### 拒绝售后 => 成功
|
||||
PUT {{baseUrl}}/trade/after-sale/disagree
|
||||
Authorization: Bearer {{token}}
|
||||
tenant-id: {{adminTenentId}}
|
||||
tenant-id: {{adminTenantId}}
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
@@ -23,11 +23,11 @@ Content-Type: application/json
|
||||
### 确认退款 => 成功
|
||||
PUT {{baseUrl}}/trade/after-sale/refund?id=6
|
||||
Authorization: Bearer {{token}}
|
||||
tenant-id: {{adminTenentId}}
|
||||
tenant-id: {{adminTenantId}}
|
||||
Content-Type: application/json
|
||||
|
||||
### 确认收货 => 成功
|
||||
PUT {{baseUrl}}/trade/after-sale/receive?id=7
|
||||
Authorization: Bearer {{token}}
|
||||
tenant-id: {{adminTenentId}}
|
||||
tenant-id: {{adminTenantId}}
|
||||
Content-Type: application/json
|
||||
|
@@ -1,14 +1,14 @@
|
||||
### 获得交易订单分页 => 成功
|
||||
GET {{baseUrl}}/trade/order/page?pageNo=1&pageSize=10
|
||||
Authorization: Bearer {{token}}
|
||||
tenant-id: {{adminTenentId}}
|
||||
tenant-id: {{adminTenantId}}
|
||||
|
||||
### 获得交易订单分页 => 成功
|
||||
GET {{baseUrl}}/trade/order/get-detail?id=21
|
||||
Authorization: Bearer {{token}}
|
||||
tenant-id: {{adminTenentId}}
|
||||
tenant-id: {{adminTenantId}}
|
||||
|
||||
### 获得交易订单的物流轨迹 => 成功
|
||||
GET {{baseUrl}}/trade/order/get-express-track-list?id=21
|
||||
Authorization: Bearer {{token}}
|
||||
tenant-id: {{adminTenentId}}
|
||||
tenant-id: {{adminTenantId}}
|
@@ -1,6 +1,6 @@
|
||||
### 请求 /trade/cart/add 接口 => 成功
|
||||
POST {{appApi}}/trade/cart/add
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
Authorization: Bearer {{appToken}}
|
||||
Content-Type: application/json
|
||||
|
||||
@@ -12,7 +12,7 @@ Content-Type: application/json
|
||||
|
||||
### 请求 /trade/cart/update 接口 => 成功
|
||||
PUT {{appApi}}/trade/cart/update
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
Authorization: Bearer {{appToken}}
|
||||
Content-Type: application/json
|
||||
|
||||
@@ -23,20 +23,20 @@ Content-Type: application/json
|
||||
|
||||
### 请求 /trade/cart/delete 接口 => 成功
|
||||
DELETE {{appApi}}/trade/cart/delete?ids=1
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
Authorization: Bearer {{appToken}}
|
||||
|
||||
### 请求 /trade/cart/get-count 接口 => 成功
|
||||
GET {{appApi}}/trade/cart/get-count
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
Authorization: Bearer {{appToken}}
|
||||
|
||||
### 请求 /trade/cart/get-count-map 接口 => 成功
|
||||
GET {{appApi}}/trade/cart/get-count-map
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
Authorization: Bearer {{appToken}}
|
||||
|
||||
### 请求 /trade/cart/list 接口 => 成功
|
||||
GET {{appApi}}/trade/cart/list
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
Authorization: Bearer {{appToken}}
|
||||
|
@@ -1,18 +1,18 @@
|
||||
### /trade-order/settlement 获得订单结算信息(基于商品)
|
||||
GET {{appApi}}/trade/order/settlement?type=0&items[0].skuId=1&items[0].count=2&items[1].skuId=2&items[1].count=3&couponId=1
|
||||
Authorization: Bearer {{appToken}}
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
|
||||
### /trade-order/settlement 获得订单结算信息(基于购物车)
|
||||
GET {{appApi}}/trade/order/settlement?type=0&items[0].cartId=50&couponId=1
|
||||
Authorization: Bearer {{appToken}}
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
|
||||
### /trade-order/create 创建订单(基于商品)【快递】
|
||||
POST {{appApi}}/trade/order/create
|
||||
Content-Type: application/json
|
||||
Authorization: Bearer {{appToken}}
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
|
||||
{
|
||||
"pointStatus": true,
|
||||
@@ -31,7 +31,7 @@ tenant-id: {{appTenentId}}
|
||||
POST {{appApi}}/trade/order/create
|
||||
Content-Type: application/json
|
||||
Authorization: Bearer {{appToken}}
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
|
||||
{
|
||||
"pointStatus": true,
|
||||
@@ -51,19 +51,19 @@ tenant-id: {{appTenentId}}
|
||||
### 获得订单交易的分页
|
||||
GET {{appApi}}/trade/order/page?pageNo=1&pageSize=10
|
||||
Authorization: Bearer {{appToken}}
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
|
||||
### 获得订单交易的详细
|
||||
GET {{appApi}}/trade/order/get-detail?id=21
|
||||
Authorization: Bearer {{appToken}}
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
|
||||
### 获得交易订单的物流轨迹
|
||||
GET {{appApi}}/trade/order/get-express-track-list?id=70
|
||||
Authorization: Bearer {{appToken}}
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
||||
|
||||
### /trade-order/settlement-product 获得商品结算信息
|
||||
GET {{appApi}}/trade/order/settlement-product?spuIds=633
|
||||
Authorization: Bearer {{appToken}}
|
||||
tenant-id: {{appTenentId}}
|
||||
tenant-id: {{appTenantId}}
|
Reference in New Issue
Block a user