Version: 202607
Create page
POST/openapi/2026-07/pages
Create a new page with the provided details.
Request
- application/json
- Body
- Example
Bodyrequired
page objectrequired
Page number
titlestringrequired
The title of the page
contentstring
The HTML content of the page
urlstring
The URL of the page. The format of the URL should be "/pages/xxxx"
meta_titlestring
The SEO title of the page
meta_keywordsstring[]
The SEO keywords for the page
meta_descriptionstring
The SEO description of the page
independent_seoboolean
Whether to manage SEO independently
{
"page": {
"title": "string",
"content": "string",
"url": "string",
"meta_title": "string",
"meta_keywords": [
"string"
],
"meta_description": "string",
"independent_seo": true
}
}
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
codestring
error code
messagestring
error message
data object
page object
Page number
idint32
Unique ID of the page
store_idint32
Store ID to which the page belongs
titlestring
The title of the page
contentstring
HTML content of the page
statusint32
Status of the page (1 for active)
created_atstring
Timestamp of when the page was created
updated_atstring
Timestamp of the last update
urlstring
URL of the page
meta_titlestring
SEO title of the page
meta_keywordsstring[]
SEO keywords for the page
meta_descriptionstring
SEO description of the page
independent_seoboolean
Whether SEO is managed independently
originstring
Origin
{
"code": "string",
"message": "string",
"data": {
"page": {
"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"
}
}
}