SDKsReact NativeEnterprise
Update a conversation group
Update an existing conversation group.
Call updateConversationGroup() to update an existing conversation group. Pass only the fields that need to change.
const group = await OpenIMSDK.updateConversationGroup({
conversationGroupID,
name: 'Priority work',
hidden: false,
});Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
conversationGroupID | string | Yes | Conversation-group ID to update. |
name | string | No | New group name. |
ex | string | No | New group extension string. |
hidden | boolean | No | Whether the group is hidden. |
Return result
The call returns the updated ConversationGroupResp. Group changes are delivered through OnConversationGroupChanged; see Conversation group overview.
Was this page helpful?