| Contact | Donate | Imprint |
| InvestmentRound | CompanyModule | Discord |
| Property | Type | Entity | Reference | Module |
| (1) AmountUsd | DOUBLE | InvestmentRound | ||
| (2) Company | LONG | InvestmentRound | Company | CompanyModule |
| (3) Date | DATE | InvestmentRound | ||
| (4) LeadInvestor | STRING | InvestmentRound | ||
| (5) RoundType | STRING | InvestmentRound | ||
| (6) ValuationUsd | DOUBLE | InvestmentRound |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /investmentround/{id} | deleteInvestmentRoundById(id) | CompanyModule | DELETE | InvestmentRound |
| (2) /investmentround/company/{id} | findAllInvestmentRoundOfCompany(id) | CompanyModule | GET | Company InvestmentRound |
| (3) /investmentround/{id} | findInvestmentRoundById(id) | CompanyModule | GET | InvestmentRound |
| (4) /investmentround | insertInvestmentRound(investmentround) | CompanyModule | POST | InvestmentRound |
| (5) /investmentround/{id} | updateInvestmentRoundById(investmentround) | CompanyModule | PUT | InvestmentRound |
| (6) /investmentround | findAllInvestmentRound() | CompanyModule | GET | InvestmentRound |
Example:
final InvestmentRound investmentround = (InvestmentRound) invokeModule(COMPANY_MODULE + "/investmentround/" + id, InvestmentRound.class);| Contact | Donate | Imprint |