| Contact | Donate | Imprint |
| Channel | UserAccountModule | Discord |
| Property | Type | Entity | Reference | Module |
| (1) Bitrate | LONG | Channel | ||
| (2) Category | STRING | Channel | ||
| (3) CreatedAt | DATE | Channel | ||
| (4) IsNsfw | BOOL | Channel | ||
| (5) Name | STRING | Channel | ||
| (6) Position | LONG | Channel | ||
| (7) Server | LONG | Channel | Server | UserAccountModule |
| (8) Type | STRING | Channel | ||
| (9) UserLimit | LONG | Channel |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /channel/server/{id} | findAllChannelOfServer(id) | UserAccountModule | GET | Server Channel |
| (2) /channel | findAllChannel() | UserAccountModule | GET | Channel |
| (3) /message/channel/{id} | findAllMessageOfChannel(id) | UserAccountModule | GET | Channel Message |
| (4) /channel/{id} | deleteChannelById(id) | UserAccountModule | DELETE | Channel |
| (5) /channel | insertChannel(channel) | UserAccountModule | POST | Channel |
| (6) /channel/{id} | updateChannelById(channel) | UserAccountModule | PUT | Channel |
| (7) /channel/{id} | findChannelById(id) | UserAccountModule | GET | Channel |
| (8) /voicesession/channel/{id} | findAllVoiceSessionOfChannel(id) | VoiceSessionModule | GET | Channel VoiceSession |
Example:
final Channel channel = (Channel) invokeModule(USER_ACCOUNT_MODULE + "/channel/" + id, Channel.class);| Contact | Donate | Imprint |