post
https://{subdomain}.myshoplaza.com/openapi/2025-06/pages
Create a new page with the provided details.
Requireswrite_shop_navigationaccess scope. More access scope
The Create Page API allows users to create a new page on the platform with content, SEO metadata, and URL configuration.
This API is especially useful for:
- Dynamically generating custom pages on a website.
- Managing SEO metadata (title, description, and keywords) for the page.
- Automating page creation during setup processes for new stores or websites.
Request Parameters
Public Request Parameters
Body Parameters
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
page.title | string | Yes | The title of the page. | "My New Page" |
page.content | string | Yes | The HTML content of the page. | "<p>Hello!</p>" |
page.url | string | Yes | The URL of the page. | "/pages/about" |
page.meta_title | string | No | The SEO title of the page. | "About Us" |
page.meta_keyword | string | No | The SEO keywords for the page. | "about, page" |
page.meta_description | string | No | The SEO description of the page. | "Learn about us." |
page.independent_seo | boolean | No | Whether to manage SEO independently. | true |
Response Explanation
Public Response Parameters
Successful Response
| Field | Type | Description | Example |
|---|---|---|---|
code | string | "success" | Status code of the response |
message | string | Descriptive message of the response | |
data.id | int | Unique ID of the created page. | 15979 |
data.title | string | Title of the created page. | "Test" |
data.content | string | HTML content of the created page. | "<p>Welcome to my page!</p>" |
data.status | int | Status of the page (1 for active). | 1 |
data.created_at | string | Timestamp of when the page was created. | "1714377813" |
data.updated_at | string | Timestamp of the last update. | "1714377813" |
data.url | string | URL of the created page. | "/pages/test1" |
data.meta_title | string | SEO title of the page. | "Test" |
data.meta_keyword | string | SEO keywords for the page. | "" |
data.meta_description | string | SEO description of the page. | "Welcome to my page!" |
data.independent_seo | boolean | Whether SEO is managed independently. | false |
Error Response
| Field | Type | Example | Description |
|---|---|---|---|
code | string | InvalidParameter | Error http message |
message | string | `` | Error message |
