Skip to content

[User] 회원가입

jujube0 edited this page Jan 5, 2021 · 5 revisions

회원가입

    POST /users/signup

Request Body (form-data)

name type description required
email String O
nickname String O
password String O
image File 유저 프로필 이미지 파일 X

Response

name type description
status Int
success Boolean
message String
data User 생성된 유저 정보

User

name type description
id Int 유저 아이디
email String
nickname String
profile_img String 유저 프로필 이미지 주소, 프로필 이미지 없을 경우 null

Sample

{
    "status": 201,
    "success": true,
    "message": "회원 가입 성공.",
    "data": {
        "id": 11,
        "email": "[email protected]",
        "nickname": "jujube0",
        "profile_img": null
    }
}
Clone this wiki locally