Skip to content

Page (게시글 삭제)

이기태 edited this page Nov 25, 2024 · 1 revision

RequestMapping

DELETE /api/post/{postId}

Response

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
}
Clone this wiki locally