-
Notifications
You must be signed in to change notification settings - Fork 0
Page (게시글 삭제)
이기태 edited this page Nov 25, 2024
·
1 revision
DELETE
/api/post/{postId}
OK 200
{
"code": 200,
"status": "OK",
"message": "OK",
"data": {
"id": 1
}
}
BAD REQUEST 400
{
"code": 400,
"status": "BAD_REQUEST",
"message": "게시글을 찾을 수 없습니다.",
"data": null
}
BAD REQUEST 400
{
"code": 400,
"status": "BAD_REQUEST",
"message": "게시글 삭제 권한이 없습니다.",
"data": null
}