-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
김석찬
authored and
김석찬
committed
Oct 10, 2024
1 parent
c763ae7
commit f93f26c
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
| API Endpoint | Request Body | Request Header | query String | Path variable | | ||
| --- | --- | --- | --- | --- | | ||
| 홈화면 | ||
GET /home/main | | Authorization : accessToken (String) | ?id=’1’ | | | ||
| 마이 페이지 리뷰 작성 | ||
POST /my-page/reviews/create | "{ | ||
""title"" : ""string"", | ||
""contents"" : ""string"", | ||
""rating"" : ""double"", | ||
""review-image"" : ""string_url"" | ||
}" | Authorization : accessToken (String) | | | | ||
| 미션 목록 조회 | ||
GET /missions | { | ||
"region-id": "string” | ||
} | Authorization : accessToken (String) | | | | ||
| 미션 성공 누르기 | ||
POST /missions/{mission-id}/compelete | { | ||
"user-id" : "long", | ||
"mission-id" : "long", | ||
"status" : "완료" | ||
} | Authorization : accessToken (String) | | /missions/{mission-id}/compelete | | ||
| 회원 가입하기 | ||
POST /members/create | { | ||
"email" : "string","name" : "string","nickname" : "string","gender" : "enum","region" : "string","address" : "string" | ||
} | | | | | ||
|
||
- ![2021_04_user_count](./image.png) |