-
Notifications
You must be signed in to change notification settings - Fork 0
회원 조회
Bomi Kim edited this page Dec 12, 2018
·
1 revision
메소드 | 경로 | 짧은 설명 |
---|---|---|
GET | /users/{userIdx} | 회원 조회 |
Content-Type: application/json
Authorization: token(선택)
-
token이 있으면 마이페이지일 경우 회원 정보 수정 / 회원 탈퇴 가능이 표시됨
- (Response의 auth: true)
-
token이 없거나, 마이페이지가 아닐경우 회원 정보 수정/ 회원 탈퇴 가능이 표시되지 않음
- (Response의 auth: false)
{
"status": 200,
"message": "회원 정보 조회 성공",
"data": {
"userIdx": 1,
"name": "test1",
"email": [email protected]",
"profileUrl": "https://s3.ap-northeast-2.amazonaws.com/sopt-23-api-test/5e6b87bb835f4483b6996418335fca6e.jpg",
"auth": true
}
}
{
"status": 200,
"message": "회원 정보 조회 성공",
"data": {
"userIdx": 1,
"name": "test1",
"email": [email protected]",
"profileUrl": "https://s3.ap-northeast-2.amazonaws.com/sopt-23-api-test/5e6b87bb835f4483b6996418335fca6e.jpg",
"auth": false
}
}
{
"status": 404,
"message": "회원을 찾을 수 없습니다",
"data": null
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}