boards
보드 관리
보드 생성
POST
http://localhost:8080/api/boards
Request Body
Name
Type
Description
title*
String
보드 제목
content*
String
보드 내용
expires_at*
LocaDateTime
보드 만기일
보드 전체 조회
GET
http://localhost:8080/api/boards
Request Body
Name
Type
Description
String
보드 단건 조회 (+컬럼, 카드)
GET
http://localhost:8080/api/boards/{board_id}
보드 수정
PUT
http://localhost:8080/api/boards/{board_id}
Request Body
Name
Type
Description
title
String
새 제목
content
String
새 내용
보드 삭제
DELETE
http://localhost:8080/api/boards/{board_id}
보드 참여자 초대
POST
http://localhost:8080/api/boards/{board_id}/member
Request Body
Name
Type
Description
email*
String
email address
Last updated