-
Notifications
You must be signed in to change notification settings - Fork 1
✔프로필 등록
최정균 edited this page Jul 15, 2020
·
6 revisions
메소드 | 경로 | 설명 |
---|---|---|
POST | /profile/register | 프로필 등록 |
{
"Content-Type": "multipart/form-data",
"token" : "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InRlc3QzIiwibmFtZSI6Iu2FjOyKpO2KuCIsImlhdCI6MTU3NzczNTQwNSwiZXhwIjoxNTgwMzI3NDA1LCJpc3MiOiJPdW5jZV9TZXJ2ZXIifQ.V4hcw4bxwICn4p7nz15ToUw63ok-QmbIbWx7gvDMouI"
}
{
"profileImg" : "https://~",
"profileName" : "echo",
"profileWeight" : "5.5",
"profileGender" : "female",
"profileNeutral" : "false",
"profileAge" : 10,
"profileInfo" : "hosei's cat"
}
- profileImg : 고양이 프로필 이미지 (String)
- profileName : 고양이 프로필 이름 (String)
- profileWeight : 고양이 프로필 무게 (String)
- profileGender : 고양이 프로필 성별 (String)
- profileNeutral : 고양이 중성화 여부 (String)
- profileAge : 고양이 프로필 나이 (int)
- profileInfo : 고양이 프로필 한줄소개 (String)
"status": 200,
"success": true,
"data": {
"profileIdx": 17
}
}
ㅤ
- 데이터 누락
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다. "
}