-
Notifications
You must be signed in to change notification settings - Fork 1
✔유저검색
최정균 edited this page Jul 14, 2020
·
16 revisions
메소드 | 경로 | 설명 |
---|---|---|
POST | /search/user | 검색 |
ㅤㅤ
{
"Content-Type": "application/json"
}
{
"userId": "zzz",
"pageStart" : 1,
"pageEnd" : 5
}
- userId: 유저아이디 (String)
- pageStart : 목록시작번호 (int)
- pageEnd : 목록끝번호 (int)
{
"status": 200,
"success": true,
"message": "제조사를 검색 성공 했습니다",
"data": [
{
"userIdx": 1,
"id": "zzz",
"profileIdx": 1,
"profileImg": "http://cat.jpg",
"profileName": "winter",
"profileInfo": "info"
},
{
"userIdx": 1,
"id": "zzz",
"profileIdx": 2,
"profileImg": "http://cat.jpg",
"profileName": "summer",
"profileInfo": "info"
},
{
"userIdx": 1,
"id": "zzz",
"profileIdx": 34,
"profileImg": "http://img1-3",
"profileName": "nameu1p3",
"profileInfo": "info"
}
]
}
- userIdx: 유저인덱스 (int)
- id : 로그인 아이디 (String)
- profileIdx : 프로필인덱스 (int)
- profileImg : 프로필 이미지 (String)
- profileName : 프로필 이름 (String)
- profileInfo : 프로필 한줄소개 (String)
- 필요한 값 없음
{
"status": 400,
"success": "fail",
"message": "필요한 값이 없습니다"
}
```ㅤ