| Contact | Donate | Imprint |
| Investor | FundingRoundModule | Airbnb |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | Investor | Country | CountryModule |
| (2) InvestorType | STRING | Investor | ||
| (3) Name | STRING | Investor | ||
| (4) Website | STRING | Investor |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /investor | findAllInvestor() | FundingRoundModule | GET | Investor |
| (2) /investor | insertInvestor(investor) | FundingRoundModule | POST | Investor |
| (3) /investor/{id} | findInvestorById(id) | FundingRoundModule | GET | Investor |
| (4) /investor/country/{id} | findAllInvestorOfCountry(id) | FundingRoundModule | GET | Country Investor |
| (5) /investor/{id} | deleteInvestorById(id) | FundingRoundModule | DELETE | Investor |
| (6) /fundingroundinvestor/investor/{id} | findAllFundingRoundInvestorOfInvestor(id) | FundingRoundModule | GET | Investor FundingRoundInvestor |
| (7) /investor/{id} | updateInvestorById(investor) | FundingRoundModule | PUT | Investor |
Example:
final Investor investor = (Investor) invokeModule(FUNDING_ROUND_MODULE + "/investor/" + id, Investor.class);| Contact | Donate | Imprint |