-
Notifications
You must be signed in to change notification settings - Fork 3
[DELETE] 북마크 취소 영훈
최영훈 edited this page Jul 12, 2020
·
1 revision
영훈 -
Issue #94
메소드 | 경로 | 짧은 설명 |
---|---|---|
DELETE | /places/bookmark/:placeIdx | 북마크 취소 |
이름 | 뷰 이미지 |
---|
Content-Type: application/json
token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZHgiOjMsIm5hbWUiOiLstZzsmIHtm4giLCJpYXQiOjE1OTM2OTkxODMsImV4cCI6MTU5NjI5MTE4MywiaXNzIjoicGxhY2VwaWMifQ.rmFbeBfviyEzbMlMM4b3bMMiRcNDDbiX8bQtwL_cuN0
name | 데이터타입 | 설명 |
---|---|---|
placeIdx | NUMBER | 북마크 취소하고싶은 번호 |
- header statusCode : 200
{
"status": 200,
"success": true,
"message": "북마크 삭제 성공"
}
- placeIdx값이 유효하지 않을때
{
"status": 400,
"success": false,
"message": "장소 없음"
}
- 이미 북마크가 되어있을때 header statusCode : 400
{
"status": 400,
"success": false,
"message": "북마크가 없습니다."
}
- 서버 내부 에러 header statusCode : 500
{
"status": 500,
"success": false,
"message": "서버 내부 에러"
}