Skip to content

유저 알람 목록보기

suzzang edited this page Jul 12, 2019 · 3 revisions

유저 알람 목록보기

최수정

Method URL Description
GET /user/alarm/list/:lastIndex 유저 알람 목록보기
  • 요청 헤더

    Content-Type : application/json
    authorization
  • 파라미터

     lastIndex :  요청(-1), 다음 요청(마지막 데이터의 alarm_idx)
  • 응답 성공

       // status : 200
       "message": "Success",
      "data": [
          {
              "alarm_idx": 119,
              "alarm_check_flag": 0,
              "alarm_target_idx": 126,
              "alarm_date_time": "2019.07.12",
              "alarm_message": "리뷰에 댓글이 달렸습니다 : 44",
              "goods_review_idx": 165
          }
      ]
  • 응답 실패

    // status : 401
    {
       "message": "jwt must be provided"
    }
    // status : 401
    {
       "message": "jwt expired"
    } 
Clone this wiki locally