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