-
Notifications
You must be signed in to change notification settings - Fork 0
[DELETE] 프로젝트 나가기
Say-young edited this page Jul 11, 2020
·
9 revisions
메소드 | 경로 | 설명 |
---|---|---|
DELETE | .../project/:user_idx/:project_idx | 프로젝트 대기 화면에서 나가면 프로젝트 참여 명단에서 해당 유저 삭제하기 |
{
"Content-Type": "application/json"
}
key | 설명 | 타입 | 비고 |
---|---|---|---|
:user_idx | 유저 인덱스 | INT | NOT NULL |
:project_idx | 프로젝트 인덱스 | INT | NOT NULL |
< Success >
{
"status": 200,
"success": true,
"message": "프로젝트 참여자 목록에서 삭제 완료"
}
ㅤ
< Fail >
- 데이터 누락
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다."
}
- 서버 에러
{
"status": 500,
"success": false,
"message": "프로젝트 나가기 실패"
}