Search
Duplicate

기능 명세

Search
API 명세
구분
이름
method
url
request
response
유저
POST
/v1/user/create
{ ”username”:”username”, ”password”:”password”, ”e-mail”:”e-mail@e-mail.com” }
{ “userId”:”userId” }
유저
POST
/v1/user/login
{ ”username”:”username”, ”password”:”password” }
유저
GET
/v1/user/{userId}
유저
POST
/v1/user/update/{userId}
{ ”username”:”username”, ”password”:”password”, ”Introduction”:”Introduction” }
게시글
POST
/v1/board
{ “title”: “title1”, “content”: “content1” }
게시글
GET
/v1/board
[ { “boardId”: 1, “title”: “title1”, “username”: “username1”, “content”: “content1”, “createTimestamp”: “2023-11-21 15:00:00” } ]
게시글
GET
/v1/board/{boardId}
{ “boardId”: 1, “title”: “title1”, “username”: “username1”, “content”: “content1”, “createTimestamp”: “2023-11-21 15:00:00”, “comments”: [ “commentId”: 1, “content”: “comment1”, “username”: “user1”, “createTimestamp”: “2023-11-21 15:00:00”, ] }
게시글
PUT
/v1/board
{ “boardId”: 1, “title”: “title1”, “content”: “content1” }
게시글
DELETE
/v1/board
{ “boardId”: 1 }
게시글
POST
/v1/board/like
{ “boardId”: 1 }
게시글
DELETE
/v1/board/like
{ “boardId”: 1 }
댓글
POST
/v1/comment
{ “boardId”: 1, “content”: “content1” }
댓글
PUT
/v1/comment
{ “commentId”: 1, “content”: “content1” }
댓글
DELETE
/v1/comment
{ “commentId”: 1 }
댓글
POST
/v1/comment/like
{ “commentId”: 1 }
댓글
DELETE
/v1/comment/like
{ “commentId”: 1 }