GET page/{name}

Get Page description containing list of all views.

Request Information

URI

https://ofd-api.blueprintcpq.net/page/{name}?share={share}

URI Parameters

NameDescriptionTypeAdditional information
name

Page name.

string

Required

share

Optional share identifier.

globally unique identifier

None.

Body Parameters

None.

Response Information

Resource Description

Page definition.

PageResponse
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

None.

PluralName

string

None.

Views

Collection of PageTemplateResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "1bf5685d-c7fb-468c-a370-7cac9384d2dd",
  "Name": "sample string 2",
  "PluralName": "sample string 3",
  "Views": [
    {
      "TemplateId": "49210cb2-3072-49bd-9a8a-7956ad26d26a",
      "Name": "sample string 2",
      "AllowUnauthenticatedAccess": true,
      "EnableContextualChat": true,
      "Shortcuts": [
        {
          "Shortcut": "sample string 1",
          "Action": "sample string 2"
        },
        {
          "Shortcut": "sample string 1",
          "Action": "sample string 2"
        }
      ]
    },
    {
      "TemplateId": "49210cb2-3072-49bd-9a8a-7956ad26d26a",
      "Name": "sample string 2",
      "AllowUnauthenticatedAccess": true,
      "EnableContextualChat": true,
      "Shortcuts": [
        {
          "Shortcut": "sample string 1",
          "Action": "sample string 2"
        },
        {
          "Shortcut": "sample string 1",
          "Action": "sample string 2"
        }
      ]
    }
  ]
}

text/html

Sample:
{"Id":"1bf5685d-c7fb-468c-a370-7cac9384d2dd","Name":"sample string 2","PluralName":"sample string 3","Views":[{"TemplateId":"49210cb2-3072-49bd-9a8a-7956ad26d26a","Name":"sample string 2","AllowUnauthenticatedAccess":true,"EnableContextualChat":true,"Shortcuts":[{"Shortcut":"sample string 1","Action":"sample string 2"},{"Shortcut":"sample string 1","Action":"sample string 2"}]},{"TemplateId":"49210cb2-3072-49bd-9a8a-7956ad26d26a","Name":"sample string 2","AllowUnauthenticatedAccess":true,"EnableContextualChat":true,"Shortcuts":[{"Shortcut":"sample string 1","Action":"sample string 2"},{"Shortcut":"sample string 1","Action":"sample string 2"}]}]}

application/xml, text/xml

Sample:
<PageResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.Responses">
  <Id>1bf5685d-c7fb-468c-a370-7cac9384d2dd</Id>
  <Name>sample string 2</Name>
  <PluralName>sample string 3</PluralName>
  <Views>
    <PageTemplateResponse>
      <AllowUnauthenticatedAccess>true</AllowUnauthenticatedAccess>
      <EnableContextualChat>true</EnableContextualChat>
      <Name>sample string 2</Name>
      <Shortcuts>
        <PageTemplateShortcutResponse>
          <Action>sample string 2</Action>
          <Shortcut>sample string 1</Shortcut>
        </PageTemplateShortcutResponse>
        <PageTemplateShortcutResponse>
          <Action>sample string 2</Action>
          <Shortcut>sample string 1</Shortcut>
        </PageTemplateShortcutResponse>
      </Shortcuts>
      <TemplateId>49210cb2-3072-49bd-9a8a-7956ad26d26a</TemplateId>
    </PageTemplateResponse>
    <PageTemplateResponse>
      <AllowUnauthenticatedAccess>true</AllowUnauthenticatedAccess>
      <EnableContextualChat>true</EnableContextualChat>
      <Name>sample string 2</Name>
      <Shortcuts>
        <PageTemplateShortcutResponse>
          <Action>sample string 2</Action>
          <Shortcut>sample string 1</Shortcut>
        </PageTemplateShortcutResponse>
        <PageTemplateShortcutResponse>
          <Action>sample string 2</Action>
          <Shortcut>sample string 1</Shortcut>
        </PageTemplateShortcutResponse>
      </Shortcuts>
      <TemplateId>49210cb2-3072-49bd-9a8a-7956ad26d26a</TemplateId>
    </PageTemplateResponse>
  </Views>
</PageResponse>