版本:202506
查询自定义页面列表
GET/openapi/2025-06/pages
分页获取所有自定义页面列表。
请求
Query参数
cursor string
分页游标
page_size int32
每页记录数
响应
- 200
OK
- application/json
- 数据结构
- 示例
数据结构
- Array [
- ]
codestring
错误码
messagestring
错误信息
data object
pages object[]
页面列表
idint32
页面的唯一 ID
store_idint32
页面所属店铺 ID
titlestring
页面标题
contentstring
页面的 HTML 内容
statusint32
页面状态(1 为激活)
created_atstring
页面创建时间
updated_atstring
最后更新时间
urlstring
页面的 URL
meta_titlestring
页面的 SEO 标题
meta_keywordsstring[]
页面的 SEO 关键词
meta_descriptionstring
页面的 SEO 描述
independent_seoboolean
是否独立管理 SEO
originstring
来源
cursorstring
分页游标
has_moreboolean
是否有更多记录
{
"code": "string",
"message": "string",
"data": {
"pages": [
{
"id": 0,
"store_id": 0,
"title": "string",
"content": "string",
"status": 0,
"created_at": "string",
"updated_at": "string",
"url": "string",
"meta_title": "string",
"meta_keywords": [
"string"
],
"meta_description": "string",
"independent_seo": true,
"origin": "string"
}
],
"cursor": "string",
"has_more": true
}
}