Get theme DocTree
GET/openapi/2026-07/themes/:theme_id/doctree
Retrieve details of a specific theme's doc-tree using its unique identifier.
Request
Path Parameters
The unique ID of the theme for which the doc-tree is requested
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
- Array [
- ]
- Array [
- ]
- Array [
- ]
- Array [
- ]
- Array [
- ]
- Array [
- ]
error code
error message
data object
layouts object[]
Array of layout files included in the theme. Each object contains the ID and location
File ID
Path or location of the file
templates object[]
Array of template files included in the theme. Each object contains the ID and location
File ID
Path or location of the file
sections object[]
Array of section files included in the theme. Each object contains the ID and location
File ID
Path or location of the file
snippets object[]
Array of snippet files included in the theme. Each object contains the ID and location
File ID
Path or location of the file
assets object[]
Array of asset files included in the theme. Each object contains the ID and location
File ID
Path or location of the file
configs object[]
Array of configuration files included in the theme. Each object contains the ID and location
File ID
Path or location of the file
locales object[]
Array of localization files included in the theme. Each object contains the ID and location
File ID
Path or location of the file
{
"code": "string",
"message": "string",
"data": {
"layouts": [
{
"id": "string",
"location": "string"
}
],
"templates": [
{
"id": "string",
"location": "string"
}
],
"sections": [
{
"id": "string",
"location": "string"
}
],
"snippets": [
{
"id": "string",
"location": "string"
}
],
"assets": [
{
"id": "string",
"location": "string"
}
],
"configs": [
{
"id": "string",
"location": "string"
}
],
"locales": [
{
"id": "string",
"location": "string"
}
]
}
}