헤더 정보 (Headers)
Header | Description |
Authorization | Bearer {token} |
Content-Type | application/json |
요청 예시 (Request Example)
•
요청
DELETE /gathering/{gatheringId}
Content-Type: application/json
Authorization: Bearer {token}
Plain Text
복사
•
모임을 삭제하면 파티도 같이 삭제
응답 (Response)
•
HTTP Status Codes:
◦
204 No Content: 모임, 파티 삭제 성공.
◦
403 Forbidden: 사용자가 모임의 소유자가 아니거나 권한이 없음.
◦
404 Not Found: 해당 ID의 모임이 존재하지 않음.
•
응답 예시
HTTP/1.1 204 No Content
JSON
복사
•
오류 발생
{
"code": "COMMENT_PERMISSION_DENIED",
"message": "해당 모임에 대한 권한이 없습니다.",
"status": 403
}
JSON
복사
{
"code": "COMMENT_NOT_FOUND",
"message": "해당 댓글을 찾을 수 없습니다.",
"status": 404
}
JSON
복사