版本:202607
查询主题文件版本(单文件)列表
GET/openapi/2026-07/themes/:theme_id/doc/versions
返回单个主题文件的版本历史列表。
请求
Path参数
theme_id string必填
主题 ID
Query参数
type string
文件类型(layout, templates, sections, snippets, assets, config, locales)。默认layout
location string
文件在主题中的位置。默认为 theme.liquid
响应
- 200
OK
- application/json
- 数据结构
- 示例
数据结构
- Array [
- ]
codestring
错误码
messagestring
错误信息
data object
versions object[]
版本列表
idstring
主题文件版本 ID
versionstring
版本
created_atstring
创建时间,ISO-8601 格式
theme_idstring
主题 ID
typestring
类型
locationstring
位置信息
updated_atstring
最后更新时间,ISO-8601 格式
{
"code": "string",
"message": "string",
"data": {
"versions": [
{
"id": "string",
"version": "string",
"created_at": "string",
"theme_id": "string",
"type": "string",
"location": "string",
"updated_at": "string"
}
]
}
}