| Contact | Donate | Imprint |
| Notification | GameModule |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | Notification | ||
| (2) DataJson | STRING | Notification | ||
| (3) IsRead | BOOL | Notification | ||
| (4) Type | STRING | Notification | ||
| (5) User | LONG | Notification | UserAccount | UserAccountModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /notification/{id} | deleteNotificationById(id) | GameModule | DELETE | Notification |
| (2) /notification | findAllNotification() | GameModule | GET | Notification |
| (3) /notification/{id} | findNotificationById(id) | GameModule | GET | Notification |
| (4) /notification/user/{id} | findAllNotificationOfUser(id) | GameModule | GET | UserAccount Notification |
| (5) /notification/{id} | updateNotificationById(notification) | GameModule | PUT | Notification |
| (6) /notification | insertNotification(notification) | GameModule | POST | Notification |
Example:
final Notification notification = (Notification) invokeModule(GAME_MODULE + "/notification/" + id, Notification.class);| Contact | Donate | Imprint |