FilmTalks
ํ๋ฆํ ํฌ ๊ธ ๋ฑ๋ก
POST
/filmtalks/register/:user_id
Request Body
Name
Type
Description
image
blob
category*
string
title*
string
contents
text
{
// Response
message: "Successfully registered"
}
ํ๋ฆํ ํฌ ์ด๋ฏธ์ง URL ๋ฑ๋ก
POST
/filmtalks/register/image/:user_id
{
// Response
message: "URL Successfully Created",
url: imgURL
}
ํ๋ฆํ ํฌ ๊ธ ์์
PATCH
/filmtalks/revision/:filmtalk_id
Request Body
Name
Type
Description
image
blob
category*
string
title
string
contents
string
{
// Response
message: "Successfully modified"
}
๊ฒ์ํ ๊ธ ์ญ์
DELETE
/filmtalks/deletion/:filmtalk_id
{
// Response
message: "Successfully deleted"
}
์ ์ฒด ๊ฒ์๊ธ ์กฐํ (ํ์ด์ง๋ค์ด์
)
GET
/filmtalks/total?offset&limit
{
// Response
message: "ok",
data: {[
board1, board2, ... boardN
]}
}
์ ํํ ๊ฒ์ํ ๊ธ ์ ๋ณด ์กฐํ
GET
/filmtalks/view/:board_id
{
// Response
message: "ok",
data: {
boardData
}
}
Last updated