Name url HTTP Method 회원가입 /api/register POST 일반 로그인 /api/user_login POST 관리자 로그인 /api/admin_login POST
변수명 의미 유저 email user_id 유저 id user_pw 유저 password
Name url HTTP Method 게시글 작성 /api/post POST 게시글 수정 /api/post/{post_id} PUT 게시글 삭제 /api/post/{post_id} DELETE 게시글 상세화면 /api/post/{post_id} GET 게시글 검색 /api/post GET
변수명 의미 post_id 게시글 고유 번호 author 작성자 content 내용 create_date 작성 시간 modify_date 수정 시간 which_board 자유/익명 게시판 판별 is_anonymous 익명으로 작성했는지 판별
Name url HTTP Method 댓글 작성 /api/post/{post_id}/comments POST 댓글 수정 /api/post/{post_id}/comments/{comment_id} PUT 댓글 삭제 /api/post/{post_id}/comments/{comment_id} DELETE
변수명 의미 comment_id 댓글 고유 번호 user_id 작성자 content 내용 create_date 댓글 작성 시간 modify_date 댓글 수정 시간 is_anonymous 익명으로 작성했는지 판별