| Contact | Donate | Imprint |
| Podcast | CompanyEntityModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | Podcast | Country | CountryModule |
| (2) Description | STRING | Podcast | ||
| (3) IsExclusive | BOOL | Podcast | ||
| (4) IsVideoEnabled | BOOL | Podcast | ||
| (5) Language | STRING | Podcast | ||
| (6) Title | STRING | Podcast |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /podcast/{id} | updatePodcastById(podcast) | CompanyEntityModule | PUT | Podcast |
| (2) /podcast | findAllPodcast() | CompanyEntityModule | GET | Podcast |
| (3) /podcast/{id} | deletePodcastById(id) | CompanyEntityModule | DELETE | Podcast |
| (4) /podcast | insertPodcast(podcast) | CompanyEntityModule | POST | Podcast |
| (5) /podcast/country/{id} | findAllPodcastOfCountry(id) | CompanyEntityModule | GET | Country Podcast |
| (6) /podcast/{id} | findPodcastById(id) | CompanyEntityModule | GET | Podcast |
| (7) /podcastepisode/podcast/{id} | findAllPodcastEpisodeOfPodcast(id) | TrackModule | GET | Podcast PodcastEpisode |
| (8) /creatortoolusage/podcast/{id} | findAllCreatorToolUsageOfPodcast(id) | TrackModule | GET | Podcast CreatorToolUsage |
Example:
final Podcast podcast = (Podcast) invokeModule(COMPANY_ENTITY_MODULE + "/podcast/" + id, Podcast.class);| Contact | Donate | Imprint |