Skip to content

aboutMe조회

황규철 edited this page Apr 20, 2022 · 1 revision

aboutMe 조회

메소드 경로 설명
GET /aboutMe?order={order} aboutMe 조회

요청 파라미터

PARAMETER : order = new(최신순) or old(오래된순)

ex) /aboutMe?order=new

요청 헤더

Content-Type: application/json
Header: jwt token

응답 바디

SUCCESS : ABOUT ME 조회 성공

{
    "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"
            }
        ]
    }
}

Clone this wiki locally