-
Notifications
You must be signed in to change notification settings - Fork 0
[POST] 게시물 수정
DongGeon0908 edited this page Oct 23, 2021
·
1 revision
METHOD | URL | ... |
---|---|---|
PUT | /api/club/{clubId}/board/{boardId}/post/{postId} | 게시물 수정 |
{
"Content-Type": "application/json",
"Authorization": "Bearer "${token}"
}
{
"title" : "타이틀",
"content" : "콘텐츠입니다."
}
{
"status": 200,
"message": "UPDATE_POST_SUCCESS",
"data": null
}