**GET /notifications** * Get all notifications for the current user * No input * Body Output ** id: number; ** subject: string; ** description: string; ** isRead: boolean; ** createdBy: string; ** createdDate: Date; **PUT /notifications/${id}** * Mark the given notification as "read" * Restrict to notifications for the current user * No input * No body output **PUT /notifications** * Mark all notifications of the current user as "read" * No input * No body output
GET /notifications
** id: number;
** subject: string;
** description: string;
** isRead: boolean;
** createdBy: string;
** createdDate: Date;
PUT /notifications/${id}
PUT /notifications