05-Jun-2026 | v7.10.7 | All new article
System Pages API
Retrieve and Update System Pages via the public API endpoint using "where" filtering, as well as retrieve and update a System Page's SEO settings. The default page content can also be retrieved via this API.
GET System Pages List
Retrieves a list of System Pages as a JSON response based on your provided query parameters.
/api/v2/admin/system-pages
Parameters
{<where query>}<propertyAlias><string><double><integer><integer>Data / Response:
N/A
{
"Items": [
{
"Id": 0,
"Url": "string",
"Name": "string",
"Description": "string",
"TemplateId": 0,
"Enable": true
}
],
"TotalItemsCount": 0
}
GET System Page Item
Retrieves a single System Page based on the ID passed in the endpoint URL.
/api/v2/admin/system-pages/{id}
Data / Response:
N/A
{
"Id": 0,
"Url": "string",
"Name": "string",
"Description": "string",
"TemplateId": 0,
"Enable": true
}
PUT System Page Update
Updates a single System Page based on the ID passed in the endpoint URL and data provided.
/api/v2/admin/system-pages/{id}
Data / Response:
{
"Description": "string",
"TemplateId": 0,
"Enable": true
}
{
"Id": 0,
"Url": "string",
"Name": "string",
"Description": "string",
"TemplateId": 0,
"Enable": true
}
GET System Page SEO Item
Retrieves a single System Page's SEO settings based on the ID passed in the endpoint URL.
/api/v2/admin/system-pages/{id}/seo
Data / Response:
N/A
{
"Id": 0,
"Name": "string",
"SEOTitle": "string",
"MetaDescription": "string",
"ShowPageForSearchEngine": true,
"CanonicalLink": "string",
"EnableAMP": true,
"AMPContent": "string",
"SocialMetaTags": "string",
"SeoPriority": 0,
"Url": "string",
"OpenGraphProperties": {
"title": "string",
"type": "string",
"url": "string",
"locale": "string",
"image": "string"
}
}
PUT System Page SEO Update
Updates a single System Page's SEO settings based on the ID passed in the endpoint URL and data provided.
/api/v2/admin/system-pages/{id}/seo
Data / Response:
{
"SEOTitle": "string",
"MetaDescription": "string",
"ShowPageForSearchEngine": true,
"CanonicalLink": "string",
"EnableAMP": true,
"AMPContent": "string",
"SocialMetaTags": "string",
"SeoPriority": 1,
"OpenGraphProperties": {
"title": "string",
"type": "string",
"url": "string",
"locale": "string",
"image": "string"
}
}
{
"Id": 0,
"Name": "string",
"SEOTitle": "string",
"MetaDescription": "string",
"ShowPageForSearchEngine": true,
"CanonicalLink": "string",
"EnableAMP": true,
"AMPContent": "string",
"SocialMetaTags": "string",
"SeoPriority": 0,
"Url": "string",
"OpenGraphProperties": {
"title": "string",
"type": "string",
"url": "string",
"locale": "string",
"image": "string"
}
}
GET System Page Restore To Default
Retrieves the default content for a single System Page based on the ID passed in the endpoint URL.
/api/v2/admin/system-pages/restore-to-default/{id}
Data / Response:
N/A
"string"
