TIMFriendshipCreateFriendGroup
Introduction
Create friend group
Cannot create existed friend group.
Parameter details
Parameter name | Parameter type | Required | Description |
---|---|---|---|
createFriendGroupParams | CreateFriendGroupParams | yes | Param of creating friend group |
Returned template
Promise<commonResult<Array<FriendResult>>>
{
code: TIMResult | TIMErrCode;
desc?: string | undefined;
json_param?: Array<FriendResult> | undefined;
json_params?: Array<FriendResult> | 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 | Array< FriendResult > | undefined | Return value of calling API |
json_params | Array< FriendResult > | 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();
import { CreateFriendGroupParams } from "im_electron_sdk/dist/interfaces";
let param: CreateFriendGroupParams = {
params: {
friendship_create_friend_group_param_name_array: [""],
friendship_create_friend_group_param_identifier_array: [""],
},
user_data: "" // optional
}
const { code } = await timRenderInstance.TIMFriendshipCreateFriendGroup(param);
if (code == 0) {
// success
}