Cyan Web API - Version 1


GET api/tenantCustomPage?{customPageId}

            Gets an Custom Page by CustomPageId
            

Request Information

Parameters

NameDescriptionAdditional information
customPageId

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "customPageId": "4b88d592-cbf1-4969-abbf-939b4ff6c8c6",
  "name": "sample string 2",
  "description": "sample string 3",
  "viewTitle": "sample string 4",
  "viewBody": "sample string 5",
  "viewPath": "sample string 6",
  "createdDateUtc": "2024-10-17T13:34:28.761328+00:00",
  "updatedDateUtc": "2024-10-17T13:34:28.761328+00:00"
}

application/xml, text/xml

Sample:
<CustomPageRepresentation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlueDot.Cyan.Server.Core.Models.Rest.Version1">
  <CreatedDateUtc>2024-10-17T13:34:28.761328+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2024-10-17T13:34:28.761328+00:00</UpdatedDateUtc>
  <CustomPageId>4b88d592-cbf1-4969-abbf-939b4ff6c8c6</CustomPageId>
  <Description>sample string 3</Description>
  <Name>sample string 2</Name>
  <ViewBody>sample string 5</ViewBody>
  <ViewPath>sample string 6</ViewPath>
  <ViewTitle>sample string 4</ViewTitle>
</CustomPageRepresentation>