-
Notifications
You must be signed in to change notification settings - Fork 1
[Profile] 마이페이지 프로필 가져오기
jujube0 edited this page Jan 5, 2021
·
2 revisions
GET /profiles
name | type | description | required |
---|---|---|---|
token | String | 토큰 | O |
/profiles
name | type | description |
---|---|---|
status | Int | |
success | Boolean | |
message | String | |
data | User | 유저 정보 |
name | type | description |
---|---|---|
id | Int | user id |
nickname | String | |
String | ||
profile_img | String | 없을 경우 null |
continued_visit | Int | 연속 방문 날짜 |
answer_count | Int | 답한 질문 개수 |
{
"status": 200,
"success": true,
"message": "내 프로필 정보 가져오기 성공",
"data": {
"id": 2,
"nickname": "jujube0",
"email": "[email protected]",
"profile_img": null,
"continued_visit": 2,
"answer_count": 4
}
}