cards
카드 관리
카드 단건 조회 (댓글)
GET
http://localhost:8080/api/cards/{card_id}
Path Parameters
card_id*
Long
카드 id
Cookies
Authorization*
String
JWT 토큰값
카드 생성
POST
http://localhost:8080/api/cards/{column_id}/create
Path Parameters
column_id*
Long
컬럼 id
Cookies
Authorization*
String
JWT 토큰값
Request Body
title*
String
카드 제목
content*
String
카드 내용
expired_at*
LocalDateTime
만료 시간
카드 수정
PUT
http://localhost:8080/api/cards/{card_id}
Path Parameters
card_id*
Long
카드 id
Headers
Authorization*
String
JWT 토큰값
Request Body
title
String
카드 제목
content
String
카드 내용
expired_at
LocalDateTime
만료 시간
카드 삭제
DELETE
http://localhost:8080/api/cards/{card_id}
Path Parameters
card_id*
Long
카드 id
Cookies
Authorization*
String
JWT 토큰값
카드 이동
PUT
http://localhost:8080/api/cards/{card_id}/move/{column_id}
Path Parameters
card_id*
Long
카드 id
column_id*
Long
컬럼 id
Cookies
Authorization*
String
JWT 토큰값
카드 참여자 추가
POST
http://localhost:8080/api/cards/{card_id}/invite/{user_id}
Path Parameters
card_id*
Long
카드 id
user_id*
Long
유저 id
Cookies
Authorization*
String
JWT 토큰값
Last updated