TIMConvGetConversationGroupList
Introduction
Get conversation group list
Supported from the 6.5 version of the sdk
Only works with Ultimate edition
Parameter details
Parameter name | Parameter type | Required | Description |
---|---|---|---|
getConvGroupListParam | getConvGroupList | yes | Param of getting conversation group list |
Returned template
Promise<commonResult<convGroupListResult>>
{
code: TIMResult | TIMErrCode;
desc?: string | undefined;
json_param?: convGroupListResult | undefined;
json_params?: convGroupListResult | undefined;
user_data?: string | undefined;
}
Return value details
name | type | description |
---|---|---|
code | TIMResult | TIMErrCode | Request result: Error codes. 0 means success. |
desc | string | undefined | The description of the error. It will be empty if success. |
json_param | convGroupListResult | undefined | Return value of calling API |
json_params | convGroupListResult | undefined | Return value of calling API. Compatible field, which is returned in some cases. |
user_data | string | undefined | ImSDK is responsible for transporting user-defined data without any processing |
Code example
import TimRender from "im_electron_sdk/dist/renderer";
const timRenderInstance = new TimRender();
let param: getConvGroupList = {
user_data: ""
}
timRenderInstance.TIMConvGetConversationGroupList(param);