GET api/Comm/GetPageData?pageId={pageId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
pageId

string

Required

Body Parameters

None.

Response Information

Resource Description

SitePageEntity
NameDescriptionTypeAdditional information
PageID

globally unique identifier

None.

SiteID

integer

None.

ModuleID

globally unique identifier

None.

PageTitle

string

None.

IsHomePage

boolean

None.

ComponentDataValue

string

None.

OnlyComponentDataValue

string

None.

CreateTime

date

None.

UpdateTime

date

None.

Response Formats

application/json, text/json

Sample:
{
  "PageID": "eb60017a-6de7-4141-9c77-87322100be50",
  "SiteID": 2,
  "ModuleID": "7bd0b98d-effb-44a4-807d-ee87257e87d3",
  "PageTitle": "sample string 4",
  "IsHomePage": true,
  "ComponentDataValue": "sample string 6",
  "OnlyComponentDataValue": "sample string 7",
  "CreateTime": "2025-12-18T12:11:56.7985496+08:00",
  "UpdateTime": "2025-12-18T12:11:56.7985496+08:00"
}

application/xml, text/xml

Sample:
<SitePageEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WST.ModuleLibrary.Entity">
  <PageID>eb60017a-6de7-4141-9c77-87322100be50</PageID>
  <SiteID>2</SiteID>
  <ModuleID>7bd0b98d-effb-44a4-807d-ee87257e87d3</ModuleID>
  <PageTitle>sample string 4</PageTitle>
  <IsHomePage>true</IsHomePage>
  <ComponentDataValue>sample string 6</ComponentDataValue>
  <OnlyComponentDataValue>sample string 7</OnlyComponentDataValue>
  <CreateTime>2025-12-18T12:11:56.7985496+08:00</CreateTime>
  <UpdateTime>2025-12-18T12:11:56.7985496+08:00</UpdateTime>
</SitePageEntity>