| Services | Contact | Donate | About | Imprint |
| Investor | CountryModule | 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/{id} | deleteInvestorById(id) | CountryModule | DELETE | Investor |
| (2) /investor/{id} | updateInvestorById(investor) | CountryModule | PUT | Investor |
| (3) /investor/country/{id} | findAllInvestorOfCountry(id) | CountryModule | GET | Country Investor |
| (4) /investor/{id} | findInvestorById(id) | CountryModule | GET | Investor |
| (5) /investor | insertInvestor(investor) | CountryModule | POST | Investor |
| (6) /investor | findAllInvestor() | CountryModule | GET | Investor |
| (7) /fundingroundinvestor/investor/{id} | findAllFundingRoundInvestorOfInvestor(id) | MessageThreadModule | GET | Investor FundingRoundInvestor |
Example:
final Investor investor = (Investor) invokeModule(COUNTRY_MODULE + "/investor/" + id, Investor.class);| Services | Contact | Donate | About | Imprint |