Trello API
Trello Project API명세서
Last updated
Trello Project API명세서
Last updated
POST
localhost:3000/api/signup
email*
string
실제 이메일 형식대로 작성
password*
string
최소 4자 이상의 영문 대소문자 및 숫자로 작성
confirmPassword*
string
password와 동일하게 작성
nickname*
String
닉네임
GET
localhost:3000/api/user/:uid
uid*
number
유저 아이디
PUT
localhost:3000/api/user/:uid
uid*
number
유저 아이디
password*
string
기존 유저 비밀번호
newNickname*
string
수정할 유저 닉네임
newPassword*
string
수정할 유저 비밀번호 (최소 4자 이상의 영문 대소문자 및 숫자로 작성)
POST
localhost:3000/api/login
email*
String
이메일
password*
String
비밀번호
GET
localhost:3000/api/board/:bid/member
bid
int
POST
localhost:3000/api/member
보드 관리자만 사용 할 수 있는 기능
uid
int
bid
int
DELETE
localhost:3000/api/member/
보드 관리자만 사용 할 수 있는 기능
uid
int
bid
int
GET
localhost:3000/api/board/:bid
bid
integer
조회 될 보드아이디
POST
localhost:3000/api/board
boardId
integer
보드 아이디
userId
integer
유저 아이디
name
varchar
보드 이름
explanation
varchar
보드 설명
color
varchar
보드 색상
PATCH
localhost:3000/api/board/:bid
name
varchar
보드 이름
explanation
varchar
보드 설명
color
String
보드 색상
DELETE
localhost:3000/api/board/:bid
boardId
integer
보드 아이디
userId
integer
유저 아이디
GET
localhost:3000/api/board/:bid/list
lid
number
POST
localhost:3000/api/board/:bid/list
title
String
리스트 제목
content
String
PATCH
localhost:3000/api/board/:bid/list/:lid
title
String
content
String
DELETE
localhost:3000/api/board/:bid/list/:lid
POST
localhost:3000/api/board/:bid/list/:lid/card
bid*
number
보드 아이디
lid*
number
리스트아이디
title*
String
카드 제목
color*
String
카드 색상
manager*
String
작업자
explanation*
String
카드 설명
deadline*
String
카드 마감일
GET
localhost:3000/api/board/:bid/list/:lid/card
bid
number
보드아이디
lid
number
리스트아이디
PUT
localhost:3000/api/board/:bid/list/:lid/card/:cid
bid*
number
보드아이디
lid*
number
리스트아이디
cid*
number
카드아이디
title*
String
수정할 카드 제목
color*
String
수정할 카드 색상
explanation*
String
수정할 카드 설명
PATCH
localhost:3000/api/board/:bid/list/:lid/card/:cid
bid*
number
보드아이디
lid*
number
리스트아이디
cid*
number
카드아이디
deadline*
date
기존 마감일
NewDeadline*
date
수정한 마감일
DELETE
localhost:3000/api/board/:bid/list/:lid
lid*
integer
리스트 아이디
cid*
number
삭제할 카드 아이디
GET
localhost:3000/api/board/:bid/card/:cid/manager
uid
number
유저ID
cid
number
카드ID
POST
localhost:3000/api/board/:bid/card/:cid/manager
uid
number
cid
number
PUT
localhost:3000/api/board/:bid/card/:cid/manager/:uid
uid
number
cid
number
DELETE
localhost:3000/api/board/:bid/card/:cid/manager/:uid
POST
localhost:3000/api/list/:lid/order
order
int
POST
localhost:3000/api/card/:cid/order
POST
localhost:3000/api/board/:bid/card/:cid/comment
bid*
number
보드 아이디
cid*
number
카드 아이디
comment*
String
댓글
GET
localhost:3000/api/board/:bid/card/:cid/comment
bid*
number
보드 아이디
cid*
number
카드 아이디
GET
localhost:3000/api/board/:bid/card/:cid/comment/:commentId
bid*
number
보드 아이디
cid*
number
카드 아이디
commentId*
number
댓글 아이디
PUT
localhost:3000/api/board/:bid/card/:cid/comment/:commentid
commentid*
number
수정할 코멘트 아이디
comment*
String
수정할 댓글 내용
DELETE
localhost:3000/api/board/:bid/card/:cid/comment/:commentId