| Contact | Donate | Imprint |
| VoiceSession | VoiceSessionModule | Discord |
| Property | Type | Entity | Reference | Module |
| (1) Channel | LONG | VoiceSession | Channel | UserAccountModule |
| (2) EndedAt | DATE | VoiceSession | ||
| (3) StartedAt | DATE | VoiceSession |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /voicesession | findAllVoiceSession() | VoiceSessionModule | GET | VoiceSession |
| (2) /voicesession/{id} | findVoiceSessionById(id) | VoiceSessionModule | GET | VoiceSession |
| (3) /voicesession/{id} | updateVoiceSessionById(voicesession) | VoiceSessionModule | PUT | VoiceSession |
| (4) /voicesession/{id} | deleteVoiceSessionById(id) | VoiceSessionModule | DELETE | VoiceSession |
| (5) /voicesession/channel/{id} | findAllVoiceSessionOfChannel(id) | VoiceSessionModule | GET | Channel VoiceSession |
| (6) /voiceparticipant/voicesession/{id} | findAllVoiceParticipantOfVoiceSession(id) | VoiceSessionModule | GET | VoiceSession VoiceParticipant |
| (7) /voicesession | insertVoiceSession(voicesession) | VoiceSessionModule | POST | VoiceSession |
Example:
final VoiceSession voicesession = (VoiceSession) invokeModule(VOICE_SESSION_MODULE + "/voicesession/" + id, VoiceSession.class);| Contact | Donate | Imprint |