-
Notifications
You must be signed in to change notification settings - Fork 3
api_spec
HEESEUNG KOO edited this page Oct 8, 2021
·
29 revisions
- api ์คํ
- todo
- api: /category/{category_id}
- http method: GET
- ์์ฒญ ํค๋
Content-Type: application/json;charset=UTF-8
- api: /category
- http method: POST
- ์์ฒญ ํค๋
Content-Type: application/json;charset=UTF-8
Authorization: "bearer <ํ ํฐ>"
- request_body
{
"title": "",
}
- api: /category/{category_id}
- http method: PUT
- ์์ฒญ ํค๋
Content-Type: application/json;charset=UTF-8
Authorization: "bearer <ํ ํฐ>"
- request_body
{
"title": "",
}
- api: /category/{category_id}
- http method: DELETE
- ์์ฒญ ํค๋
Content-Type: application/json;charset=UTF-8
Authorization: "bearer <ํ ํฐ>"
# [์ปค๋ฎค๋ํฐ ํผ๋ ๊ฒ์ํ API](#์ปค๋ฎค๋ํฐ-api) ## ์ปค๋ฎค๋ํฐ ๊ฒ์ํ ์กฐํ * api: /board * http method: GET * ์์ฒญ ํค๋ ```json Content-Type: application/json;charset=UTF-8 ```
- api: /board/{account_id}
- http method: GET
- ์์ฒญ ํค๋
Content-Type: application/json;charset=UTF-8
- api: /board/{board_id}
- http method: GET
- ์์ฒญ ํค๋
Content-Type: application/json;charset=UTF-8
- api: /board
- http method: POST
- ์์ฒญ ํค๋
Content-Type: application/json;charset=UTF-8
Authorization: "bearer <ํ ํฐ>"
- request_body
{
"content": "",
"account": {}
}
- api: /board/{board_id}
- http method: PUT
- ์์ฒญ ํค๋
Content-Type: application/json;charset=UTF-8
Authorization: "bearer <ํ ํฐ>"
- request_body
{
"content": "",
}
- api: /board/{board_id}
- http method: DELETE
- ์์ฒญ ํค๋
Content-Type: application/json;charset=UTF-8
Authorization: "bearer <ํ ํฐ>"