# 지정된 사용자의 프로모션 제한 설정 늘리기 적용된 제한 설정 내에서 지정된 사용자가 사용할 수 있는 남은 프로모션 횟수를 늘립니다. 사용자 제한 API를 사용하면 사용자가 프로모션을 사용할 수 있는 횟수를 제한할 수 있습니다. 사용자 제한 자체를 구성하려면 원하는 프로모션 유형의 관리 섹션으로 이동합니다. * 할인 프로모션 * 보너스 프로모션 Endpoint: POST /v2/project/{project_id}/admin/user/limit/promotion/id/{promotion_id} Version: 2.0.0 Security: basicAuth ## Path parameters: - `project_id` (integer, required) 프로젝트 ID입니다. 이 매개 변수는 관리자 페이지의 프로젝트 이름 옆에서 확인할 수 있습니다. Example: 44056 - `promotion_id` (integer, required) 프로모션 ID입니다. 프로젝트 내부의 고유 프로모션 식별자입니다. Example: 111425 ## Request fields (application/json): - `available` (integer, required) 적용된 제한 설정 내에서 사용자가 사용할 수 있는 남은 아이템 또는 프로모션 사용 수량입니다. - `user` (object, required) - `user.user_external_id` (string, required) 사용자 외부 ID입니다. ## Response 200 fields (application/json): - `per_user` (object) - `per_user.available` (integer) 사용자가 프로모션을 사용할 수 있는 남은 횟수입니다. Example: 9 - `per_user.total` (integer) 사용자가 프로모션을 사용할 수 있는 최대 횟수입니다. 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) - `errorMessage` (string) - `statusCode` (integer) - `transactionId` (string) ## Response 422 fields (application/json): - `errorCode` (integer) - `errorMessage` (string) - `errorMessageExtended` (array) - `statusCode` (integer) - `transactionId` (string)