thread_keys(≤100,去重保序,逐 key 独立)批量核销/复活工作项,幂等(重复调用安全,只更新需要变更的条目)。resolved:源系统已办结 → 该 thread_key 在当前 workspace 下所有用户的待处理条目自动标记 done(核销,done_source=source)reopened:源系统撤回/重开 → 已完成条目回到待处理并重置未读(浮回找上门)Authorization: Bearer ********************{
"thread_keys": [
"oa:approval-8821",
"oa:approval-8822"
],
"status": "resolved"
}curl --location 'https://app.emooai.com/open-api/v1/message/status' \
--header 'Emoo-User-Id: ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"thread_keys": [
"oa:approval-8821",
"oa:approval-8822"
],
"status": "resolved"
}'{
"code": 200,
"message": "success",
"data": {
"results": [
{
"thread_key": "oa:approval-8821",
"status": "done",
"updated_count": 3
},
{
"thread_key": "oa:approval-8822",
"status": "done",
"updated_count": 1
}
]
}
}