通过用户ID获取指定群的入群申请
简要描述
- 获取指定用户的入群申请。
请求方式
post
请求URL
{API_ADDRESS}/group/get_group_users_req_application_list
Header
header名 | 示例值 | 选填 | 类型 | 说明 |
---|---|---|---|---|
operationID | 1646445464564 | 必填 | string | 用于全局链路追踪,建议使用时间戳,在每个请求中独立 |
token | eyJhbxxxx3Xs | 必填 | string | 管理员 token |
请求参数示例
{
"groupID": "234",
"userIDs": [
"123"
]
}
字段名 | 选填 | 类型 | 说明 |
---|---|---|---|
groupID | 必填 | string | 群ID |
userIDs | 必填 | array | 用户ID列表 |
成功返回示例
{
"errCode": 0,
"errMsg": "",
"errDlt": "",
"data": {
"total": 1,
"groupRequests": [
{
"userInfo": {
"userID": "1225441072",
"nickname": "blooming66",
"faceURL": "",
"ex": ""
},
"groupInfo": {
"groupID": "3666081223",
"groupName": "group1",
"notification": "notification1",
"introduction": "",
"faceURL": "",
"ownerUserID": "1054527962",
"createTime": 1687747185342,
"memberCount": 14,
"ex": "",
"status": 0,
"creatorUserID": "1054527962",
"groupType": 2,
"needVerification": 0,
"lookMemberInfo": 0,
"applyMemberFriend": 0,
"notificationUpdateTime": 0,
"notificationUserID": ""
},
"handleResult": 1,
"reqMsg": "hello",
"handleMsg": "reason",
"reqTime": 1687747407352,
"handleUserID": "",
"handleTime": 0,
"ex": "",
"joinSource": 3,
"inviterUserID": ""
}
]
}
}
成功返回示例的参数说明
参数名 | 类型 | 说明 |
---|---|---|
errCode | int | 错误码,0表示成功 |
errMsg | string | 错误简要信息,为空 |
errDlt | errDlt | 错误详细信息,为空 |
data | object | 通用数据对象,具体结构见下方 |
total | int | 加群申请总数 |
groupRequests | array | 入群申请对象列表 |
失败返回示例
{
"errCode": 1004,
"errMsg": "RecordNotFoundError",
"errDlt": ": [1004]RecordNotFoundError"
}
失败返回示例的参数说明
参数名 | 类型 | 说明 |
---|---|---|
errCode | int | 错误码,具体查看全局错误码文档 |
errMsg | string | 错误简要信息 |
errDlt | errDlt | 错误详细信息 |