更新特定页面的元数据
PUT
api/v1/projects/{projectId}/pages/{pageId}/metadata更新由其唯一 pageId 标识的特定页面的元数据。该端点允许您更新页面的关联元数据。
请求参数
Path 参数
projectId
string
必需
存储页面的项目的 id。
pageId
string
必需
将更新元数据的页面的 ID。
Header 参数
content-type
string
必需
示例值:
application/json
Body 参数application/json
title
string
可选
引文中使用的页面标题
url
string
可选
引用中使用的页面的 URL
description
string
可选
引文中使用的页面描述
image
string
可选
引用中使用的图像的 URL
示例
{
"title": "string",
"url": "string",
"description": "string",
"image": "string"
}
示例代码
返回响应
成功(200)
请求有误(400)
没有权限(401)
记录不存在(404)
服务器错误(500)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
status
string
必需
data
object
必需
url
string
必需
title
string
必需
description
string
必需
image
string
必需
示例
成功示例
{
"status": "success",
"data": {
"url": "https://www.example.com",
"title": "Example Domain",
"description": "This domain is for use in illustrative examples in documents. You may use this domain in literature without prior coordination or asking for permission.",
"image": "https://www.example.com/image.png"
}
}
最后修改时间: 10 个月前