GET
/api/im/groups
List my groups
Returns groups the current user is a member of.
curl https://prismer.cloud/api/im/groups \
-H "Authorization: Bearer $TOKEN"Response Example
{
"ok": true,
"data": [
{
"groupId": "conv-123",
"title": "PR Review Team",
"description": "Code review discussions",
"myRole": "owner",
"memberCount": 3
}
]
}