| Contact | Donate | Imprint |
| Report | StoryModule |
| Property | Type | Entity | Reference | Module |
| (1) Comment | LONG | Report | Comment | StoryModule |
| (2) CreatedAt | DATE | Report | ||
| (3) Details | STRING | Report | ||
| (4) Post | LONG | Report | Post | UserAccountModule |
| (5) Reason | STRING | Report | ||
| (6) Reel | LONG | Report | Reel | ReelModule |
| (7) ReportedUser | LONG | Report | UserAccount | UserAccountModule |
| (8) Reporter | LONG | Report | UserAccount | UserAccountModule |
| (9) Status | STRING | Report | ||
| (10) Story | LONG | Report | Story | StoryModule |
| (11) UpdatedAt | DATE | Report |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /report | insertReport(report) | StoryModule | POST | Report |
| (2) /report/reporter/{id} | findAllReportOfReporter(id) | StoryModule | GET | UserAccount Report |
| (3) /report/{id} | deleteReportById(id) | StoryModule | DELETE | Report |
| (4) /report/reporteduser/{id} | findAllReportOfReportedUser(id) | StoryModule | GET | UserAccount Report |
| (5) /report/post/{id} | findAllReportOfPost(id) | StoryModule | GET | Post Report |
| (6) /report/comment/{id} | findAllReportOfComment(id) | StoryModule | GET | Comment Report |
| (7) /report/{id} | updateReportById(report) | StoryModule | PUT | Report |
| (8) /report | findAllReport() | StoryModule | GET | Report |
| (9) /report/reel/{id} | findAllReportOfReel(id) | StoryModule | GET | Reel Report |
| (10) /report/{id} | findReportById(id) | StoryModule | GET | Report |
| (11) /report/story/{id} | findAllReportOfStory(id) | StoryModule | GET | Story Report |
Example:
final Report report = (Report) invokeModule(STORY_MODULE + "/report/" + id, Report.class);| Contact | Donate | Imprint |