즐겨찾는 매장 등록 해제 - YeongSeoYeonGeun/UOrders_Server GitHub Wiki

즐겨찾는 매장 등록 해제 (삭제)

메소드 경로 설명
DELETE /users/favorite 즐겨찾는 매장 등록 해제 (삭제)

요청 헤더

{
    "Content-Type": "application/json",
    "userIndex": 1,
    "cafeIndex": 1
}

응답 성공

{
    "status": 200,
    "message": "즐겨찾는 매장 등록 해제 성공"
}

응답 실패

{
    "status": 400,
    "message": "userIndex 혹은 cafeIndex 에 해당하는 값이 유효하지 않습니다. userIndex 혹은 cafeIndex  값을 확인해주세요."
}
{
    "status": 500,
    "message": "INTERNAL_SERVER_ERROR"
}