删除消息表情回复
DELETE
/open-apis/im/v1/messages/{message_id}/reactions/{reaction_id}
注意事项:
错误码
HTTP状态码 | 错误码 | 描述 | 排查建议 |
---|---|---|---|
400 | 231002 | The operator has no permission to react on the specific message. | 请求主体(user或者bot)没有权限对该消息添加/删除reaction,一般是因为不在消息所在的会话中。 |
400 | 231003 | The message is not found, maybe not exist or deleted. | 找不到被添加reaction的消息,可能消息ID有误或者消息已经被撤回,删除等。 |
400 | 231004 | The chat in which the message exists is not found, maybe not exist, deleted or archived. | 添加reaction的消息所在的会话不存在,或者已经被解散、归档等。 |
400 | 231005 | The thread has been no-trace removed, cannot put reaction. | 被添加reaction的消息是一个话题消息,该话题消息被无痕撤回。 |
400 | 231007 | The operator has no permission to delete this reaction. | 操作人没有权限删除某个reaction,因为对应reaction的原始添加人不是该操作人。 |
400 | 231008 | The operator has no access to the message. | 操作人对该消息没有访问权限,一般是因为操作人不在消息所在会话内。 |
400 | 231010 | The reaction does not belong to the message. | 被删除的reaction不属于指定的message,检查reaction_id和message_id是否匹配。 |
400 | 231011 | The request has an invalid reaction_id. | reaction_id参数不合法,无法定位到一个真实存在的reaction。 |
400 | 231012 | The request has an invalid pageToken. | pageToken参数不合法。 |
400 | 231013 | The request has an invalid AuthType. | request的授权方式不合法,没有使用tenant_access_token或者user_access_token。 |
400 | 231015 | Act on reaction failed, repeated request is processing. | 重复的reaction请求正在处理中。 |
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://open.feishu.cn/open-apis/im/v1/messages/om_8964d1b4*********2b31383276113/reactions/ZCaCIjUBVVWSrm5L-3ZTw*************sNa8dHVplEzzSfJVUVLMLcS_' \
--header 'Authorization: Bearer{{tenant_access_token}}' \
--header 'Authorization;'
响应示例响应示例
{
"code": 0,
"msg": "success",
"data": {
"reaction_id": "ZCaCIjUBVVWSrm5L-3ZTw*************sNa8dHVplEzzSfJVUVLMLcS_",
"operator": {
"operator_id": "ou_ff0b7ba35fb********67dfc8b885136",
"operator_type": "app/user"
},
"action_time": "1626086391570",
"reaction_type": {
"emoji_type": "SMILE"
}
}
}
请求参数
Path 参数
message_id
string
必需
示例值:
om_8964d1b4*********2b31383276113
reaction_id
string
必需
示例值:
ZCaCIjUBVVWSrm5L-3ZTw*************sNa8dHVplEzzSfJVUVLMLcS_
Header 参数
Authorization
string
必需
示例值:
Bearer{{tenant_access_token}}
Content-Type
string
必需
默认值:
application/json; charset=utf-8
返回响应
修改于 2023-01-12 09:57:00