-
Notifications
You must be signed in to change notification settings - Fork 0
[POST] 라운드 설정
Say-young edited this page Jul 16, 2020
·
7 revisions
메소드 | 경로 | 설명 |
---|---|---|
POST | round/setting | 라운드 목표, 소요 시간 설정하기 |
{
"Content-Type": "application/json"
}
{
"project_idx" : INT,
"round_purpose": STRING,
"round_time": INT
}
- project_idx : 프로젝트 인덱스
- project_purpose : 라운드 목표
- project_time : 라운드 소요 시간
< Success >
{
"status": 200,
"success": true,
"message": "라운드 설정 성공"
"data" : 81
}
- data: 생성한 라운드 인덱스 값
< Fail >
- 데이터 누락
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다."
}
- 서버 에러
{
"status": 500,
"success": false,
"message": "서버 에러"
}