| Contact | Donate | Imprint |
| CountryRegion | MarketRegionModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | CountryRegion | Country | CountryModule |
| (2) MarketRegion | LONG | CountryRegion | MarketRegion | MarketRegionModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /countryregion | findAllCountryRegion() | MarketRegionModule | GET | CountryRegion |
| (2) /countryregion/marketregion/{id} | findAllCountryRegionOfMarketRegion(id) | MarketRegionModule | GET | MarketRegion CountryRegion |
| (3) /countryregion/country/{id} | findAllCountryRegionOfCountry(id) | MarketRegionModule | GET | Country CountryRegion |
| (4) /countryregion | insertCountryRegion(countryregion) | MarketRegionModule | POST | CountryRegion |
| (5) /countryregion/{id} | updateCountryRegionById(countryregion) | MarketRegionModule | PUT | CountryRegion |
| (6) /countryregion/{id} | findCountryRegionById(id) | MarketRegionModule | GET | CountryRegion |
| (7) /countryregion/{id} | deleteCountryRegionById(id) | MarketRegionModule | DELETE | CountryRegion |
Example:
final CountryRegion countryregion = (CountryRegion) invokeModule(MARKET_REGION_MODULE + "/countryregion/" + id, CountryRegion.class);| Contact | Donate | Imprint |