주문 도착 알람 - YeongSeoYeonGeun/UOrders_Server GitHub Wiki

주문 도착 알람

메소드 경로 설명
GET /owner/alarm 주문 도착 알람

요청 헤더

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

응답 성공

{
    "status": 200,
    "message": "주문 도착 알람 성공",
    "data": {
        "userId": "종근",
        "totalPrice": "6000",
        "menuInfo": [
            {
                    "menuIndex": 1,
                    "menuName": "아메리카노",
                    "menuTemperature": "ICED",
                    "menuSize": "REGULAR",                  
                    "menuTakeType": "HERE",


            },     
            {
                    "menuIndex": 2,
                    "menuName": "카페라떼",
                    "menuTemperature": "HOT",
                    "menuSize": "REGULAR",                  
                    "menuTakeType": "HERE",

            },
        ], 
       
    }
}

응답 실패

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