받은 메세지 목록 조회
유저가 받은 모든 메세지를 조회합니다.
METHOD & URL
GET /message/inbox/
Permission
로그인된 유저
Success Response
HTTP Response
200 OK
Content
Comment Track List
{
"count": 받은 메세지 총 개수,
"next": 다음 페이지 주소,
"previous": 이전 페이지 주소,
"results": [
{
"id": 메세지 id 값,
"from_user": 메세지 보낸 유저 id 값,
"content": "메세지 내용",
"created_date": "메세지 전송 날짜"
},
.
.
.
]
}