| Contact | Donate | Imprint |
| Community | UserAccountModule | TwitterX |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | STRING | Community | ||
| (2) CreatorUser | LONG | Community | UserAccount | UserAccountModule |
| (3) Description | STRING | Community | ||
| (4) IsPrivate | BOOL | Community | ||
| (5) Name | STRING | Community | ||
| (6) Rules | STRING | Community |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /communitymembership/community/{id} | findAllCommunityMembershipOfCommunity(id) | ListModule | GET | Community CommunityMembership |
| (2) /community/{id} | findCommunityById(id) | UserAccountModule | GET | Community |
| (3) /community/creatoruser/{id} | findAllCommunityOfCreatorUser(id) | UserAccountModule | GET | UserAccount Community |
| (4) /community/{id} | deleteCommunityById(id) | UserAccountModule | DELETE | Community |
| (5) /community | findAllCommunity() | UserAccountModule | GET | Community |
| (6) /community | insertCommunity(community) | UserAccountModule | POST | Community |
| (7) /community/{id} | updateCommunityById(community) | UserAccountModule | PUT | Community |
Example:
final Community community = (Community) invokeModule(USER_ACCOUNT_MODULE + "/community/" + id, Community.class);| Contact | Donate | Imprint |