Chat IO
CHAT-IO =https://chat-io-ap.herokuapp.com/api/
Chat events
Events to emit
Events | Purpose |
---|---|
online | emit this event when user has log in or signup or when user is already logged in and open the application. pass userId as payload |
new-chat | emit this event when user is starting new chat pass receiverId as payload |
join-chat | emit this when user select a specific chat to send message to. pass chatId as payload |
chat-message | emit this event when chat message is sent and pass the response as payload. |
Events to be observe
Events | Purpose |
---|---|
chats | Observe this event when list of available chats changes response is same as this route {{CHAT-IO}}v1/chat/chats |
chat-message | Observe this for realtime chatting messages response is same as this route {{CHAT-IO}}v1/chat/get-messages/:chatId |