-
기념일의 월/일을 저장 후 돌아오는 기념일 표시
-
Save the month/day of the anniversary and mark the return anniversary
-
n일에 한번 돌아오는 기념일
-
a return day on the (n)
-
n주에 한번 돌아오는 기념일
-
a return week on the (n)
-
n달에 한번 돌아오는 기념일
-
a return month on the (n)
-
n년에 한번 돌아오는 기념일
-
a return year on the (n)
-
Success Response: {"Message": "Success"}
-
Fail Response: {"Message": "Failed"}
-
Userinfo
- Long:user_id
- String:username
- String:jwt
-
SetAnniversary
- String:title
- Date:start_day(yyyy-mm-dd)
- String:cycleWith
- int:cycleUnit
-
GetAnniversary
- int:anniversary_id
- String:title
- Date:start_day(yyyy-mm-dd)
- String:cycleWith
- int:cycleUnit
-
signup(/auth/signup/)
- Request(POST)
- Json
- String:username
- String:password
- Json
- Response : Success/ Fail
- Request(POST)
-
signin(/auth/signin/)
- Request(POST)
- Json : username, password
- Response : Userinfo
- Request(POST)
-
password modify(/user/<user_id>/)
- Request(PATCH)
- Auth : jwt
- PathParameter: Long:user_id
- Json : String:password
- Response : Success/ Fail
- Request(PATCH)
-
withdraw(/user/<user_id>/)
- Request(DELETE)
- Auth: jwt
- PathParameter: Long:user_id
- Response : Success/ Fail
- Request(DELETE)
-
showCalender(/user/<user_id>/calender/)
- Request(GET)
- Auth: jwt
- PathParameter: Long:user_id
- Response : GetAnniversary
- Request(GET)
-
setCalender(/user/<user_id>/calender/)
- Request(POST)
- Auth: jwt
- PathParameter: Long:user_id
- Json : SetAnniversary
- Response : Success/ Fail
- Request(POST)
-
updateCalender(/user/<user_id>/calender/<anniversary_id>/)
- Request(PUT)
- Auth: jwt
- PathParameter:
- Long:user_id
- Long:anniversary_id
- Json: SetAnniversary
- Response : Success/ Fail
- Request(PUT)
-
delCalender(/user/<user_id>/calender/<anniversary_id>/)
- Request(DELETE)
- Auth: jwt
- PathParameter:
- Long:user_id
- Long:anniversary_id
- Response : Success/ Fail
- Request(DELETE)