- 회원가입
- type : POST
- url : /users/signup
- request body :
{ "id" : String, "name" : "", "password" : String, "email" : "" }
- 로그인
- type : POST
- url : /users/signin
- request body:
{ "id" : String, "password" : String, }
- 상태 기록
- type : POST
- url : /users/note
- request body :
{ "userId" : String, "appendixMemo" : String, "conditions" : String, "waistPain" : String, "headache" : String }
- 내 기록 일지 보기
- type : GET
- url : /users/diarys?userId={userId}
- request parameter :
{ userId : string }
- 유저리스트
-
request
- type : GET
- url : /admin
-
response
- Response Body {Status = 200}
{ [ { "id" : String, "password" : String, } , ] }
-
- 유저 삭제
- request
- type : PUT
- url : /admin/users
- body:
{ "userId" : String }
- response
- response body {Status = 204}
- request