-
Notifications
You must be signed in to change notification settings - Fork 0
[PUT] 프로젝트 상태 변경
Say-young edited this page Jul 16, 2020
·
2 revisions
라운드가 시작되면 중간 참여를 방지하기 위해 project_status를 변경하는 API입니다.
메소드 | 경로 | 설명 |
---|---|---|
GET | /project/status/:project_idx | 라운드 시작되면 0이었던 project_status를 1로 변경 |
key | 설명 | 타입 | 비고 |
---|---|---|---|
:project_idx | 해당 프로젝트 인덱스 | INT | NOT NULL |
< Success >
{
"status": 200,
"success": true,
"message": "프로젝트 상태 변경 성공"
}
< Fail >
- 데이터 누락
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다"
}
- 서버 에러
{
"status": 500,
"success": false,
"message": "서버 에러"
}