name: app用户创建商品 variables: apptoken: ${ENV(ATOKEN)} bidType: 0 biddingInterval: 0 coverImgUrl: "string" description: "string" dopantRate: 0 firstCategoryId: 0 imgList: ["string"] initialUnitPrice: 0 locCityId: 0 locDetails: "string" locDistrictId: 0 locProvinceId: 0 lowestNum: 0 secondCategoryId: 0 stock: 0 unitPrice: 0 videoUrl: "string" waterRate: 0 base_url: ${ENV(AURL)} request: url: /recycle-service/create/product method: POST headers: Content-Type: "application/json;charset=UTF-8" X-APP-ID: "1" Authorization: $apptoken json: bidType: $bidType biddingInterval: $biddingInterval coverImgUrl: $coverImgUrl description: $description dopantRate: $dopantRate firstCategoryId: $firstCategoryId imgList: $imgList initialUnitPrice: $initialUnitPrice locCityId: $locCityId locDetails: $locDetails locDistrictId: $locDistrictId locProvinceId: $locProvinceId lowestNum: $lowestNum secondCategoryId: $secondCategoryId stock: $stock unitPrice: $unitPrice videoUrl: $videoUrl waterRate: $waterRate validate: - eq: ["status_code", 200] - {"check": "content.message", "comparator": "contains", "expect": "successful"}