-
Notifications
You must be signed in to change notification settings - Fork 1
userSettingAPI
jungpyolee edited this page Aug 7, 2021
·
12 revisions
해당 문서 및 API는 이정표가 작성했으며 궁금하신 부분있으면 언제든 연락주세요!
1. oAuth passport 세션을 통해 리다이렉트 되는 페이지에서 프런트에서 user정보를 받고 난후, {nickname: null}인 신규 유저의 경우 (팀은 null이어도 되기 때문에) 팀 선택, 닉네임 선택을 통해 update
-08/07 팀변경 주기 추가
신규 유저 닉네임 생성 및 닉네임 변경.
-
method
PUT
-
url
/nickname
-
body
-
Field Type Description nickname String 변경하고자 하는 닉네임
-
- success
{
"success": true,
"status": 201,
"data": "닉네임 업데이트 성공."
}
신규 유저 팀 선택 및 팀 변경. 팀 변경 주기 : 1달
PUT
/teamId
-
body
-
Field Type Description teamId Integer 변경하고자 하는 팀id
-
-
success
{
"success": true,
"status": 201,
"data": "선호팀 업데이트 성공."
}
- fail
팀 변경한지 한달이 지나지 않았을 경우
{
"success": false,
"status": 400,
"msg": "M월 N일"
}
- M월 N일 = 유저의 직전 팀변경일 + 1달 후
- 용례: ${response.data.msg}이후에 변경가능합니다.