/v1/user/create
{
”username”:”username”,
”password”:”password”,
”e-mail”:”e-mail@e-mail.com”
}
{
“userId”:”userId”
}
/v1/user/login
{
”username”:”username”,
”password”:”password”
}
/v1/user/update/{userId}
{
”username”:”username”,
”password”:”password”,
”Introduction”:”Introduction”
}
/v1/board
{
“title”: “title1”,
“content”: “content1”
}
/v1/board
[
{
“boardId”: 1,
“title”: “title1”,
“username”: “username1”,
“content”: “content1”,
“createTimestamp”: “2023-11-21 15:00:00”
}
]
/v1/board/{boardId}
{
“boardId”: 1,
“title”: “title1”,
“username”: “username1”,
“content”: “content1”,
“createTimestamp”: “2023-11-21 15:00:00”,
“comments”: [
“commentId”: 1,
“content”: “comment1”,
“username”: “user1”,
“createTimestamp”: “2023-11-21 15:00:00”,
]
}
/v1/board
{
“boardId”: 1,
“title”: “title1”,
“content”: “content1”
}
/v1/comment
{
“boardId”: 1,
“content”: “content1”
}
/v1/comment
{
“commentId”: 1,
“content”: “content1”
}