# 更新优惠券促销活动 更新优惠券促销活动。 Endpoint: PUT /v3/project/{project_id}/admin/coupon/{external_id} Version: 2.0.0 Security: basicAuth ## Path parameters: - `project_id` (integer, required) 项目ID。您可以在您的发布商帐户项目名称旁边找到。 Example: 44056 - `external_id` (integer, required) 促销活动外部ID。项目内的唯一促销活动标识符。 Example: "coupon_44056_1" ## Request fields (application/json): - `attribute_conditions` (array) 用户属性验证条件。 根据用户属性是否满足所有指定条件来确定促销活动可用性。 - `bonus` (array,null) - `bonus.quantity` (number) 商品数量。 - `bonus.sku` (string) 物品 SKU。 - `name` (object, required) 促销活动名称。应包含键/值对, 其中键是"^[a-z]{2}-[A-Z]{2}$"格式的区域设置,值是字符串。 Example: {"de-DE":"Gutscheintitel","en-US":"Coupon title"} - `promotion_periods` (array) 促销活动有效期。若指定了多个时间段,则date_from和date_until均为必需。 - `promotion_periods.date_from` (string, required) 指定促销活动的开始日期。 Example: "2020-08-11T10:00:00+03:00" - `promotion_periods.date_until` (string,null) 促销活动的结束日期。设置为null时,促销活动永久有效。仅在指定单个有效期时可设置为null。 Example: "2020-08-11T20:00:00+03:00" - `redeem_code_limit` (integer,null) 每个代码的兑换次数。 Example: 10 - `redeem_total_limit` (integer,null) 限制优惠券的总数。 Example: 10 - `redeem_user_limit` (integer,null) 限制单个用户兑换的优惠券总数。 Example: 10 ## Response 401 fields (application/json): - `errorCode` (integer) Example: 1020 - `errorMessage` (string) Example: "[0401-1020]: Error in Authentication method occurred" - `statusCode` (integer) Example: 401 ## Response 404 fields (application/json): - `errorCode` (integer) Example: 4001 - `errorMessage` (string) Example: "[0401-9802]: Coupon not found" - `statusCode` (integer) Example: 404 - `transactionId` (string) Example: "x-x-x-x-transactionId-mock-x-x-x" ## Response 422 fields (application/json): - `errorCode` (integer) Example: 1102 - `errorMessage` (string) Example: "[0401-1102]: Unprocessable Entity. The property `external_id` is required" - `statusCode` (integer) Example: 422 ## Response 204 fields