拉人入群
POST
/im/v2/team_members
请求参数
Header 参数
AppKey
string
必需
默认值:
{{AppKey}}
X-custom-traceid
string
可选
默认值:
{% mock 'uuid' %}
Nonce
string
必需
默认值:
{{Nonce}}
CurTime
string
必需
默认值:
{{CurTime}}
CheckSum
string
必需
默认值:
{{CheckSum}}
Body 参数application/json
operator_id
string
操作者(邀请人)账号 ID
team_id
number
群组 ID
team_type
integer
群组类型
invite_account_ids
array[string]
邀请入群的成员列表
msg
string
邀请入群的附言
extension
string
自定义扩展字段
示例
{
"operator_id": "accid1",
"team_id": 18573968767,
"team_type": 1,
"invite_account_ids": [
"accid2"
],
"msg": "in",
"extension": "fugiat in"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://open.yunxinapi.com/im/v2/team_members' \
--header 'AppKey;' \
--header 'X-custom-traceid: {% mock '\''uuid'\'' %}' \
--header 'Nonce;' \
--header 'CurTime;' \
--header 'CheckSum;' \
--header 'Content-Type: application/json' \
--data-raw '{
"operator_id": "accid1",
"team_id": 18573968767,
"team_type": 1,
"invite_account_ids": [
"accid2"
],
"msg": "in",
"extension": "fugiat in"
}'
返回响应
🟢200成功
application/json
Body
code
integer
状态码
msg
string
提示信息
data
object
返回数据
success_list
array[string]
成功的列表
failed_list
array [object {3}]
失败的列表
示例
{
"code": 200,
"msg": "success",
"data": {
"success_list": [
"accoutn_id1",
"accoutn_id2"
],
"failed_list": [
{
"account_id": "accoutn_id1",
"error_code": 102404,
"error_msg": "%s not valid"
}
]
}
}
🟢200成功
🟢200请求参数错误
🟢200服务器错误
修改于 2024-02-26 02:27:48