Skip to content

[User] 최근 아이디 검색 기록 가져오기

Jihyun247 edited this page Jan 9, 2021 · 4 revisions

최근 아이디 검색 기록 가져오기 (전체)

    GET /users/search/history
스크린샷 2021-01-07 오후 11 32 18

Request Header

name type description required
token String 토큰 O

Response

name type description
status Int
success Boolean
message String
data User list

User

name type description
id Int 검색 기록 결과 사용자 id
nickname string 검색 기록 결과 사용자 닉네임
profile_img string 검색 기록 결과 사용자의 프로필 이미지

Sample1 (최근 검색 기록이 한개 이상일 때)

{
    "status": 200,
    "success": true,
    "message": "최근 검색 가져오기 성공",
    "data": [
        {
            "id": 5,
            "nickname": "wlgus1",
            "profile_img": null
        },
        {
            "id": 6,
            "nickname": "wlgus2",
            "profile_img": null
        },
        {
            "id": 8,
            "nickname": "wlgus4",
            "profile_img": null
        },
        {
            "id": 9,
            "nickname": "wlgus5",
            "profile_img": null
        }
    ]
}

Sample2 (최근 검색 기록이 없을 때)

{
    "status": 200,
    "success": true,
    "message": "최근 검색 기록이 없습니다"
}
Clone this wiki locally