You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
488 B
18 lines
488 B
name: app用户取消代卖订单
|
|
variables:
|
|
code: 200
|
|
message: successful
|
|
apptoken: ${ENV(ATOKEN)}
|
|
orderId: 501094564069773312
|
|
base_url: ${ENV(AURL)}
|
|
request:
|
|
url: /recycle-service/proxy-sell/cancel/order/$orderId
|
|
method: POST
|
|
headers:
|
|
Content-Type: "application/json;charset=UTF-8"
|
|
X-APP-ID: "1"
|
|
Authorization: $apptoken
|
|
|
|
validate:
|
|
- eq: ["status_code", $code]
|
|
- {"check": "content.message", "comparator": "contains", "expect": $message}
|