please select
  • UIKit
  • SDK
  • Server APIs
Chat/
SDK/
React Native/
Group/
SDK
  • Run Demo
  • SDK Integration
  • Initialization
  • Login and Logout
  • Message
    • Message Overview
    • Sending Message
    • Receiving Message
    • Historical Message
    • Forwarding Message
    • Modifying Message
    • Message Inserting
    • Deleting Message
    • Clearing Messages
    • Recalling Message
    • Online Message
    • Read Receipt
    • Querying Message
    • Group @ Message
    • Targeted Group Message
    • Notification Muting
    • Message Extension
  • Group
    • Overview
    • Group Management
    • Group Profile
    • Group Member Management
    • Group Member Profile
    • Custom Group Attribute
    • Community Management
  • User
    • User Profile
    • Friend Management
    • Friend List
    • Blocklist
  • Offline Push
    • Offline Push
  • Local Search
    • Searching for Message
    • Searching for Friend
    • Searching Group
    • Searching for Group Member
  • Signaling
    • Signaling Management
  • Changelog
  • Guideline for Beginners
  • Console Guide
    • Creating and Upgrading an Application
    • Basic Configuration
    • Feature Configuration
    • Account Management
    • Group Management
    • Webhook Configuration
  • Product Introduction
    • Message Management
      • One-to-One Message
      • Message Storage
      • Offline Push
      • Group Message
      • Message Formats
    • Account System
      • Login Authentication
      • Online Status Management
    • Group Related
      • Group System
      • Group Management
    • User Profile and Relationship Chain
      • Profile Management
      • Relationship Chain Management
  • Purchase Guide
    • Billing Overview
    • Pricing
  • Error Codes

Custom Group Attribute

Feature Description

The methods to manipulate group attributes are in the TencentImSDKPlugin.v2TIMManager.getGroupManager() core class.
A new custom group field is designed based on the API 2.0. It is a "group attribute" that enables seat management in audio chat rooms. When a member mics on, a group attribute can be set to manage the member information. When the member mics off, the group attribute can be deleted. Other members can get the group attribute list to display the seat list.
Note:
Currently, the group attribute feature is available only for audio-video groups (AVChatRoom).
The group attribute has the following features:
1. You can CRUD group attributes directly in the client without console configuration.
2. Up to 16 group attributes are supported. Each group attribute can be up to 4 KB, and the total size of all the group attributes can be up to 16 KB.
3. The initGroupAttributes, setGroupAttributes, and deleteGroupAttributes APIs can be called by a logged-in user up to 10 times every 5 seconds in total in the SDK, after which the error code 8511 will be returned, or 5 times every second in total on the backend, after which the error code 10049 will be returned.
4. The getGroupAttributes API can be called by a logged-in user up to 20 times every 5 seconds in the SDK.

Initializing group attributes

You can call the initGroupAttributes API (Details) to initialize the group attributes, and the original group attributes, if any, will be cleared.
Below is the sample code:
// Initialize the group attributes
groupManager.initGroupAttributes("groupID", {
attr1: "",
});

Setting group attributes

You can call the setGroupAttributes API (Details) to set the group attributes. If a group attribute does not exist, it will be automatically added.
Below is the sample code:
// Set the group attributes
groupManager.setGroupAttributes("groupID", {
attr1: "",
});

Deleting group attributes

You can call the deleteGroupAttributes API (Details) to delete specified group attributes. If keys is null/nil, all the group attributes will be cleared.
Below is the sample code:
// Delete a group attribute
groupManager.deleteGroupAttributes("groupID", ["attr1", "attr2"]);

Getting group attributes

You can call the getGroupAttributes API (Details) to get specified group attributes. If keys is null/nil, all the group attributes will be obtained.
Below is the sample code:
// Get the group attributes
const attrs = await groupManager.getGroupAttributes("groupID");

Updating group attributes

If you have called addGroupListener to add a group event listener, all the group attributes will be called back through onGroupAttributeChanged (Details) when a group attribute is changed.
Below is the sample code:
TencentImSDKPlugin.v2TIMManager.addGroupListener({
onGroupAttributeChanged: (groupID, groupAttributeMap) => {
// A group attribute is changed.
},
});