curl --request DELETE \
--url https://api.replyke.com/api/v6/:projectId/api/v7/conversations/:conversationId/members/:userIdRemove a user from a group conversation
curl --request DELETE \
--url https://api.replyke.com/api/v6/:projectId/api/v7/conversations/:conversationId/members/:userIdadmin. Only group conversations support member removal.
The removed user’s membership row is soft-deactivated (isActive: false, leftAt set to now). They are evicted from the real-time room immediately.
{ "message": "Member removed." }
Not Found — 404
{ "error": "Conversation not found.", "code": "chat/not-found" }
Invalid Type — 400 Bad Request
{ "error": "Members can only be removed from group conversations.", "code": "chat/invalid-type" }
Forbidden — 403
{ "error": "Only group admins can remove members.", "code": "chat/not-a-member" }
Member Not Found — 404
{ "error": "Member not found in this conversation.", "code": "chat/member-not-found" }