-
Notifications
You must be signed in to change notification settings - Fork 4
회원가입
Ji Yeon Kim edited this page Jan 11, 2019
·
2 revisions
소연
메소드 | 경로 | 설명 |
---|---|---|
POST | /user | 회원가입 |
Content-Type: multipart/form-data
{
"user_id" : "coco",
"user_password" : "abc",
"user_name" : "KIM",
"user_phone" : "010222333",
"user_img" : "asdfiwoebf.jpg"
}
{
"status": 201,
"message": "회원 가입 성공",
"data": null
}
{
"status": 400,
"message": "회원이 이미 존재합니다.",
"data": null
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}