-
Notifications
You must be signed in to change notification settings - Fork 1
[User] 최근 아이디 검색 기록 가져오기
Jihyun247 edited this page Jan 9, 2021
·
4 revisions
GET /users/search/history
name | type | description | required |
---|---|---|---|
token | String | 토큰 | O |
name | type | description |
---|---|---|
status | Int | |
success | Boolean | |
message | String | |
data | User list |
name | type | description |
---|---|---|
id | Int | 검색 기록 결과 사용자 id |
nickname | string | 검색 기록 결과 사용자 닉네임 |
profile_img | string | 검색 기록 결과 사용자의 프로필 이미지 |
{
"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
}
]
}
{
"status": 200,
"success": true,
"message": "최근 검색 기록이 없습니다"
}