获取极速群发失败详情
GET
/api/v2/wecomMessage/failedList
请求参数
Query 参数
id
string
极速群发id
token
string
接口调用凭证
current
string
当前页码
pageSize
string
每页数据条数
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v2/wecomMessage/failedList?id&token¤t&pageSize'
返回响应
🟢200成功
application/json
Body
errcode
enum<string>
错误码
枚举值:
12400500-1
errmsg
string
错误说明
failedList
array [object {4}]
失败对象列表
externalUserId
string
失败对象外部联系人id
wecomChatId
string
失败对象群聊id
failReason
string
失败原因
code
enum<string>
错误码
枚举值:
103 150 151 152 153 154 155 156 157 158 159 160 161 164 1002 10001 10002 1000 1001 1010 1011 1012 1013 1014 5000
total
string
失败总数
示例
{
"type": "object",
"properties": {
"id": {
"type": "string",
"title": "群发id"
},
"successTotal": {
"type": "number",
"title": "群发成功对象数"
},
"failedTotal": {
"type": "number",
"title": "群发失败对象数"
},
"startTimestamp": {
"type": "number",
"title": "(毫秒)群发创建时间时间"
},
"scheduleTimestamp": {
"type": "integer",
"title": "(毫秒)群发定时时间,定时任务存在"
},
"finishTimestamp": {
"type": "number",
"title": "群发完成时间"
},
"failedList": {
"type": "array",
"items": {
"type": "object",
"properties": {
"externalUserId": {
"type": "string",
"title": "失败对象外部联系人id"
},
"status": {
"type": "string",
"title": "失败原因"
}
},
"x-apifox-orders": [
"externalUserId",
"status"
]
},
"title": "失败对象列表"
}
},
"required": [
"id",
"successTotal",
"failedTotal",
"startTimestamp"
],
"x-apifox-orders": [
"id",
"successTotal",
"failedTotal",
"startTimestamp",
"scheduleTimestamp",
"finishTimestamp",
"failedList"
]
}
修改于 2024-09-25 06:20:49