Skip to content

cityDelete

Hyun-juhee edited this page Jan 1, 2020 · 3 revisions

도시 삭제하기


[DELETE] ~/citys


Request-Header

메소드 파라미터 설명
Content-Type application/json

Request-Body

이름 type 설명
id int 삭제할 도시의 id

Response - body

SUCCESS
{
    "status": 200,
    "message": "CITY 삭제 성공",
    "success": true
}
FAIL 1 : country값으로 넣은 도시가 없을때
{
    "status": 204,
    "message": "도시가 없습니다", &&
    "success": false
}
FAIL 2 : 서버 내부 오류
{
    "status": 500,
    "message": "CITY DELETE 실패",
    "success": false
}
Clone this wiki locally