| Contact | Donate | Imprint |
| FraudCase | PlatformUserModule | Airbnb |
| Property | Type | Entity | Reference | Module |
| (1) CaseType | STRING | FraudCase | ||
| (2) Description | STRING | FraudCase | ||
| (3) Listing | LONG | FraudCase | Listing | ListingModule |
| (4) PlatformUserReporter | LONG | FraudCase | PlatformUser | PlatformUserModule |
| (5) ReportedAt | DATE | FraudCase | ||
| (6) ResolvedAt | DATE | FraudCase | ||
| (7) Status | STRING | FraudCase |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /fraudcase/{id} | updateFraudCaseById(fraudcase) | PlatformUserModule | PUT | FraudCase |
| (2) /fraudcase/{id} | deleteFraudCaseById(id) | PlatformUserModule | DELETE | FraudCase |
| (3) /fraudcase/platformuserreporter/{id} | findAllFraudCaseOfPlatformUserReporter(id) | PlatformUserModule | GET | PlatformUser FraudCase |
| (4) /fraudcase | insertFraudCase(fraudcase) | PlatformUserModule | POST | FraudCase |
| (5) /fraudcase/{id} | findFraudCaseById(id) | PlatformUserModule | GET | FraudCase |
| (6) /fraudcase/listing/{id} | findAllFraudCaseOfListing(id) | PlatformUserModule | GET | Listing FraudCase |
| (7) /fraudcase | findAllFraudCase() | PlatformUserModule | GET | FraudCase |
Example:
final FraudCase fraudcase = (FraudCase) invokeModule(PLATFORM_USER_MODULE + "/fraudcase/" + id, FraudCase.class);| Contact | Donate | Imprint |