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