# 忽略展品更新提醒

# 调用方式: POST

# 接口地址:

https://api.freelog.com/v2/presentables/{presentableId}/ignorePresentableVersionUpdateTip
1

# url传入参数说明:

参数 必选 类型及范围 说明
presentableId 必选 string presentableId

# body传入参数说明:

参数 必选 类型及范围 说明
ignoreVersion 必选 string 需要忽略的版本(从展品的资源详情里面获取最新版本号)

# body示例

{
  "ignoreVersion":"0.1.2"
}
1
2
3

# 返回说明:

返回值字段 字段类型 字段说明
[data] boolean 是否操作成功

# 返回示例

{
    "ret": 0,
    "errcode": 0,
    "msg": "success",
    "data": true
}
1
2
3
4
5
6