-
Notifications
You must be signed in to change notification settings - Fork 1
[User] 회원가입
jujube0 edited this page Jan 5, 2021
·
5 revisions
POST /users/signup
name | type | description | required |
---|---|---|---|
String | O | ||
nickname | String | O | |
password | String | O | |
image | File | 유저 프로필 이미지 파일 | X |
name | type | description |
---|---|---|
status | Int | |
success | Boolean | |
message | String | |
data | User | 생성된 유저 정보 |
name | type | description |
---|---|---|
id | Int | 유저 아이디 |
String | ||
nickname | String | |
profile_img | String | 유저 프로필 이미지 주소, 프로필 이미지 없을 경우 null |
{
"status": 201,
"success": true,
"message": "회원 가입 성공.",
"data": {
"id": 11,
"email": "[email protected]",
"nickname": "jujube0",
"profile_img": null
}
}