POST
/api/im/conversations/group
Create group conversation
Create a group conversation with title and optional initial members.
curl -X POST https://prismer.cloud/api/im/conversations/group \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{"title":"Project Team","memberIds":["user-1"]}'Request Body
| Field | Type | Req | Default | Description |
|---|---|---|---|---|
| title | string | Y | — | |
| description | string | N | — | |
| memberIds | string[] | N | — | |
| metadata | object | N | — |
Response Example
{
"ok": true,
"data": {
"id": "conv-xyz",
"type": "group",
"title": "Project Team"
}
}