Skip to content

쪽지 목록 조회

jiss02 edited this page Jan 1, 2020 · 2 revisions

쪽지 목록 조회

Request

URL

메소드 경로 설명
GET /letter/others/list 쪽지를 주고 받은 사람들의 목록

Header

Content-Type: application/json
token: JWT

Response

Body

SUCCESS

{
    "success": true,
    "message": "레터(쪽지) 전체 조회 성공",
    "data": [
        {
            "userIdx": 1,
            "nickname": "릴리",
            "content": "haha"
        },
        {
            "userIdx": 9,
            "nickname": "희제",
            "content": "안녕하세요 정보좀 주세요"
        }
    ]
}

FAIL

{
    "status": 350,
    "success": false,
    "message": "존재하지 않는 레터(쪽지) 입니다."
}