Skip to content

유저 생일 수정

우다현 edited this page Jul 29, 2021 · 4 revisions

유저 생일 수정

PATCH /users/info-birthday

Request

  • Body
{
    "birthday":"1999-11-23"
}
  • Headers
{
    "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWR4Ijo0OSwiaWF0IjoxNjI3NDU1MTY5LCJleHAiOjE2NTg5OTExNjksInN1YiI6InVzZXJJbmZvIn0.7-emcIqkU4Z2lB9umn7X1Rz925NNEIEIsPjJn0w4IMk"
}

Response

성공

{
    "success": true,
    "code": 1000,
    "message": "유저 정보 수정 성공",
    "result": {
        "idx": 49,
        "email": "[email protected]",
        "password": "esejklr90!",
        "hashedPassword": "aec9e58a11236a570349cc28da5a574e7d5d917530c2eeed86ceecf5402dbcb8530424d0e1eb6f3928ccea708993053469f96061f2083b7bccb534536a244bb8",
        "name": "이준기",
        "nickName": "ejilsjkl",
        "profileUrl": "https://profile",
        "birthday": "1999-11-23T00:00:00.000Z",
        "gender": "W",
        "loginType": 2,
        "createdAt": "2021-07-28T15:45:37.000Z",
        "updatedAt": "2021-07-28T18:20:41.000Z",
        "status": "Y"
    }
}

실패

  • 입력
{
    "success": false,
    "code": 2013,
    "message": "birthday를 입력해 주세요."
}
{
    "success": false,
    "code": 2014,
    "message": "birthday 형식이 올바르지 않습니다.0000-00-00 형태로 입력해주세요."
}
  • 중복
{
    "success": false,
    "code": 3008,
    "message": "존재하지 않는 userIdx입니다."
}
{
    "success": false,
    "code": 3009,
    "message": "비활성화 계정입니다."
}
{
    "success": false,
    "code": 3010,
    "message": "탈퇴된 계정입니다."
}
  • token
{
    "success": false,
    "code": 5001,
    "message": "토큰을 입력해 주세요."
}
{
    "success": false,
    "code": 5002,
    "message": "토큰 유효기간이 만료되었습니다."
}
{
    "success": false,
    "code": 5003,
    "message": "유효하지 않은 토큰입니다."
}
Clone this wiki locally