Skip to content

[对话]更新阅读状态

  • 接口地址:/api/v2/conversation/mark-as-read
  • 请求方式:PUT
  • 传参方式:application/json

Headers 可选参数

参数名公开模式(是否必传)私有模式(是否必传)
X-Fresns-AidYESYES
X-Fresns-Aid-TokenYESYES
X-Fresns-UidYESYES
X-Fresns-Aid-TokenYESYES

Body 参数

参数名类型是否必传说明
typeStringYESconversationmessage
conversationIdNumberNO
messageIdsStringNO多个以英文逗号隔开

接口使用说明

  • conversationIdmessageIds 二选一传参,不可同时传参。
  • type = conversation 使用 conversationId 参数,将当前对话框设置为已读,不包括对话下的消息。
  • type = message 使用 messageIds 参数,批量设置指定 ID 的消息为已读。

返回结果

json
{
    "code": 0,
    "message": "ok",
    "data": null
}

Released under the Apache-2.0 License