Skip to content

[POST] 게시물 수정

DongGeon0908 edited this page Oct 23, 2021 · 1 revision

URL

METHOD URL ...
PUT /api/club/{clubId}/board/{boardId}/post/{postId} 게시물 수정

Request Header

{
    "Content-Type": "application/json",
    "Authorization": "Bearer "${token}"
}

Request Body

{
       "title" : "타이틀",
       "content" : "콘텐츠입니다."
}

Response Success

{
  "status": 200,
  "message": "UPDATE_POST_SUCCESS",
  "data": null
}