Search
Duplicate

Post API

Search
기능명
메소드
URL
Request
Response
NONE
게시글 단일죠회
GET
/api/posts/{postId}
{ "title": "title", ”content": "content", ”heartCnt": Long, "username": "username", "isHearted": Boolean, ”createdAt": YYYY-MM-DD T18:02:33.358744, ”commentList": [commentList] }
전체 게시글 목록죠회
GET
/api/posts
[ {”title": ”title", ”content": "content", ”username": "username", ”heartCnt": Long, ”isHearted": Boolean, ”createdAt": ”YYYY-MM-DD T19:18:19.424091"} ]
자기 게시글 목록죠회
GET
/api/posts/mine
타인 게시글 목록죠회
GET
/api/posts/users
게시글 등록
POST
/api/posts
{”title” : title, “coentent” : content}
게시글 등록완료 여부
게시글 수정
PUT
/api/posts/{posdId}
{”title” : title, “content” : content}
게시글 수정확인 여부
게시글 삭제
DELETE
/api/posts/{posdId}
{postId}
게시글 삭제확인 여부