| Contact | Donate | Imprint |
| UserAccount | UserProfileModule | Netflix |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | UserAccount | Country | CountryModule |
| (2) CreatedAt | DATE | UserAccount | ||
| (3) Email | STRING | UserAccount | ||
| (4) Status | STRING | UserAccount |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /membership/useraccount/{id} | findAllMembershipOfUserAccount(id) | SubscriptionPlanModule | GET | UserAccount Membership |
| (2) /useraccount/{id} | findUserAccountById(id) | UserProfileModule | GET | UserAccount |
| (3) /useraccount/country/{id} | findAllUserAccountOfCountry(id) | UserProfileModule | GET | Country UserAccount |
| (4) /useraccount/{id} | deleteUserAccountById(id) | UserProfileModule | DELETE | UserAccount |
| (5) /useraccount/{id} | updateUserAccountById(useraccount) | UserProfileModule | PUT | UserAccount |
| (6) /useraccount | findAllUserAccount() | UserProfileModule | GET | UserAccount |
| (7) /useraccount | insertUserAccount(useraccount) | UserProfileModule | POST | UserAccount |
| (8) /userprofile/useraccount/{id} | findAllUserProfileOfUserAccount(id) | UserProfileModule | GET | UserAccount UserProfile |
Example:
final UserAccount useraccount = (UserAccount) invokeModule(USER_PROFILE_MODULE + "/useraccount/" + id, UserAccount.class);| Contact | Donate | Imprint |