| Contact | Donate | Imprint |
| Alert | FlightModule | FlightRadar |
| Property | Type | Entity | Reference | Module |
| (1) Active | BOOL | Alert | ||
| (2) CreatedAtUtc | DATE | Alert | ||
| (3) Flight | INT | Alert | Flight | FlightModule |
| (4) TriggerConditionJson | STRING | Alert | ||
| (5) Type | STRING | Alert | ||
| (6) UserAccount | INT | Alert | UserAccount | UserAccountModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /alert/{id} | updateAlertById(alert) | FlightModule | PUT | Alert |
| (2) /alert/{id} | deleteAlertById(id) | FlightModule | DELETE | Alert |
| (3) /alert | findAllAlert() | FlightModule | GET | Alert |
| (4) /alert/{id} | findAlertById(id) | FlightModule | GET | Alert |
| (5) /alert/useraccount/{id} | findAllAlertOfUserAccount(id) | FlightModule | GET | UserAccount Alert |
| (6) /alert | insertAlert(alert) | FlightModule | POST | Alert |
| (7) /alert/flight/{id} | findAllAlertOfFlight(id) | FlightModule | GET | Flight Alert |
Example:
final Alert alert = (Alert) invokeModule(FLIGHT_MODULE + "/alert/" + id, Alert.class);| Contact | Donate | Imprint |