Table
Search
구분
이름
method
url
request
response
유저
POST
/v1/user/create
{
”username”:”username”,
”password”:”password”,
”e-mail”:”e-mail@e-mail.com”
}
{
 “userId”:”userId”
}
유저
POST
/v1/user/update/{userId}
{
”username”:”username”,
”password”:”password”,
”Introduction”:”Introduction”
}
게시글
GET
/v1/board
[
    {
        “boardId”: 1,
        “title”: “title1”,
        “username”: “username1”,
        “content”: “content1”,
        “createTimestamp”: “2023-11-21 15:00:00”
    }
]
게시글
GET
/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”,
    ]
}