Main API알림 API
DELETE /ai/notification/{id}
알림 삭제
알림 삭제
특정 알림을 삭제합니다.
| 항목 | 값 |
|---|---|
| 메서드 | DELETE |
| 경로 | /ai/notification/\{id\} |
| 인증 | 필요 |
요청
DELETE /ai/notification/123 HTTP/1.1
Host: api.glowb.com
Authorization: Bearer eyJhbGciOiJIUzI1NiIs...curl -X DELETE "https://api.glowb.com/ai/notification/123" \
-H "Authorization: Bearer {access_token}"const response = await fetch(`/ai/notification/${notificationId}`, {
method: 'DELETE',
headers: {
'Authorization': `Bearer ${accessToken}`
}
});Path Parameters
Prop
Type
응답
성공 응답 (204 No Content)
(빈 응답)