Skip to content

[DELETE] 프로젝트 나가기

Say-young edited this page Jul 16, 2020 · 9 revisions

[DELETE] 프로젝트 나가기



view가 삭제됨에 따라 사용되지 않는 API입니다.



메소드 경로 설명
DELETE /project/:user_idx/:project_idx 프로젝트 대기 화면에서 나가면 프로젝트 참여 명단에서 해당 유저 삭제하기


Request Header

{
 "Content-Type": "application/json"
}


Request Query

key 설명 타입 비고
:user_idx 유저 인덱스 INT NOT NULL
:project_idx 프로젝트 인덱스 INT NOT NULL


Response


< Success >

{
    "status": 200,
    "success": true,
    "message": "프로젝트 참여자 목록에서 삭제 완료"
}

< Fail >

  1. 데이터 누락
{
  "status": 400,
  "success": false,
  "message": "필요한 값이 없습니다."
}
  1. 서버 에러
{
  "status": 500,
  "success": false,
  "message": "서버 에러"
}