Skip to content

회원조회

Chaewon Kim edited this page Jan 6, 2021 · 4 revisions

회원 조회



메소드 경로 설명
GET /users/:id 회원 조회

응답 바디

SUCCESS : 회원 조회 성공(200)

{
    "message": "회원 조회 성공",
    "data": {
        "id": 1,
        "email": "test_email_0",
        "name": "test_name_0",
        "password": "",
        "passwordSalt": "",
        "isAlarmSet": false,
        "alarmTime": null,
        "tempPassword": "",
        "tempPasswordCreatedAt": null,
        "tempPasswordIssueCount": 0,
        "createdAt": "2021-01-06T16:50:51.000Z",
        "updatedAt": "2021-01-06T16:50:51.000Z"
    }
}

FAIL : id값 입력하지않은 경우(400)

{
    "message": "필요한 값이 없습니다"
}

FAIL : id값 오류(400)

{
    "message": "존재하지 않는 회원"
}

FAIL : 서버 내부 오류(500)

{
    "message": "회원 조회 실패"
}