-
Notifications
You must be signed in to change notification settings - Fork 0
aboutMe조회
황규철 edited this page Apr 20, 2022
·
1 revision
메소드 | 경로 | 설명 |
---|---|---|
GET | /aboutMe?order={order} | aboutMe 조회 |
PARAMETER : order = new(최신순) or old(오래된순)
ex) /aboutMe?order=new
Content-Type: application/json
Header: jwt token
{
"status": 200,
"success": true,
"message": "사용자 ABOUT ME 조회 성공",
"data": {
"usrChrName": "닉넴1",
"usrChrDicts": [
{
"usrChrDictIdx": 2,
"usrChrDictCont": "백과사전2",
"date": "2022-04-20"
},
{
"usrChrDictIdx": 1,
"usrChrDictCont": "백과사전1(수정)",
"date": "2022-04-20"
}
]
}
}