유저 API
회원 가입, 로그인 API
회원 가입 API
POST
localhost:3000/api/users/signup
Request Body
Name
Type
Description
email*
varchar
유저 이메일
passowrd*
varchar
유저 비밀번호
confirmPassword*
varchar
유저 비밀번호 확인
isPetSitter*
boolean
펫시터/일반 유저
profileImage
varchar
유저 프로필 이미지
name*
varchar
유저 이름
로그인 API
POST
localhost:3000/api/users/login
Request Body
Name
Type
Description
email*
varchar
유저 이메일
password*
varchar
유저 비밀번호
내 정보 조회 API
GET
localhost:3000/api/users
Path Parameters
Name
Type
Description
id*
int
유저 id
Cookies
Name
Type
Description
accesstoken*
string
로그인한 사용자 정보
refreshtoken*
string
accesstoken 접근권한
{
"email": "유저 이메일",
"name": "유저 이름",
"isPetSitter": false,
"profileImage": "이미지 URL"
}
유저 패스워드 수정 API
PUT
localhost:3000/api/users/password
Cookies
Name
Type
Description
accesstoken*
string
로그인한 사용자 정보
refreshtoken
string
accesstoken 접근권한
Request Body
Name
Type
Description
password*
varchar
유저 비밀번호
confirmPassword*
varchar
유저 비밀번호 확인
유저 기본정보 수정 API
PUT
localhost:3000/api/users/
Path Parameters
Name
Type
Description
profile_image
varchar
유저 프로필 이미지
Cookies
Name
Type
Description
accesstoken*
string
로그인한 사용자 정보
refreshtoken*
string
accesstoken 접근권한
Last updated