| Contact | Donate | Imprint |
| ChatParticipant | ChatModule |
| Property | Type | Entity | Reference | Module |
| (1) Chat | LONG | ChatParticipant | Chat | ChatModule |
| (2) CustomNotificationLevel | STRING | ChatParticipant | ||
| (3) IsMuted | BOOL | ChatParticipant | ||
| (4) IsPinned | BOOL | ChatParticipant | ||
| (5) JoinedAt | DATE | ChatParticipant | ||
| (6) Role | STRING | ChatParticipant | ||
| (7) UserAccount | LONG | ChatParticipant | UserAccount | UserAccountModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /chatparticipant/{id} | findChatParticipantById(id) | ChatModule | GET | ChatParticipant |
| (2) /chatparticipant | insertChatParticipant(chatparticipant) | ChatModule | POST | ChatParticipant |
| (3) /chatparticipant/{id} | updateChatParticipantById(chatparticipant) | ChatModule | PUT | ChatParticipant |
| (4) /chatparticipant/chat/{id} | findAllChatParticipantOfChat(id) | ChatModule | GET | Chat ChatParticipant |
| (5) /chatparticipant | findAllChatParticipant() | ChatModule | GET | ChatParticipant |
| (6) /chatparticipant/{id} | deleteChatParticipantById(id) | ChatModule | DELETE | ChatParticipant |
| (7) /chatparticipant/useraccount/{id} | findAllChatParticipantOfUserAccount(id) | ChatModule | GET | UserAccount ChatParticipant |
Example:
final ChatParticipant chatparticipant = (ChatParticipant) invokeModule(CHAT_MODULE + "/chatparticipant/" + id, ChatParticipant.class);| Contact | Donate | Imprint |