| Contact | Donate | Imprint |
| VoiceCall | VoiceCallModule |
| Property | Type | Entity | Reference | Module |
| (1) CallType | STRING | VoiceCall | ||
| (2) Chat | LONG | VoiceCall | Chat | ChatModule |
| (3) Codec | STRING | VoiceCall | ||
| (4) EndedAt | DATE | VoiceCall | ||
| (5) InitiatorUserAccount | LONG | VoiceCall | UserAccount | UserAccountModule |
| (6) IsGroupCall | BOOL | VoiceCall | ||
| (7) IsRecorded | BOOL | VoiceCall | ||
| (8) MaxParticipants | LONG | VoiceCall | ||
| (9) StartedAt | DATE | VoiceCall |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /voicecall/{id} | findVoiceCallById(id) | VoiceCallModule | GET | VoiceCall |
| (2) /voicecall/{id} | updateVoiceCallById(voicecall) | VoiceCallModule | PUT | VoiceCall |
| (3) /voicecall | insertVoiceCall(voicecall) | VoiceCallModule | POST | VoiceCall |
| (4) /voicecall/chat/{id} | findAllVoiceCallOfChat(id) | VoiceCallModule | GET | Chat VoiceCall |
| (5) /voicecall/initiatoruseraccount/{id} | findAllVoiceCallOfInitiatorUserAccount(id) | VoiceCallModule | GET | UserAccount VoiceCall |
| (6) /voicecall | findAllVoiceCall() | VoiceCallModule | GET | VoiceCall |
| (7) /callparticipant/voicecall/{id} | findAllCallParticipantOfVoiceCall(id) | VoiceCallModule | GET | VoiceCall CallParticipant |
| (8) /voicecall/{id} | deleteVoiceCallById(id) | VoiceCallModule | DELETE | VoiceCall |
Example:
final VoiceCall voicecall = (VoiceCall) invokeModule(VOICE_CALL_MODULE + "/voicecall/" + id, VoiceCall.class);| Contact | Donate | Imprint |