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.

19 lines
506 B

name: 管理员修改企业状态
variables:
code: 200
uatoken: ${ENV(UATOKEN)}
enterpriseId: 533989817462165504
status: 0 # 状态 0:激活,1:未绑定,2:停用
base_url: ${ENV(UECURL)}
request:
url: /uec/admin/modify/enterprise/state
method: POST
headers:
Content-Type: "application/json"
X-APP-ID: "1"
Authorization: $uatoken
json:
enterpriseId: $enterpriseId
status: $status
validate:
- eq: ["status_code", $code]