GET api/KnowledgeBase/PageProfileConfig/GetByPageId/{pageId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
pageId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of PageProfileConfig
NameDescriptionTypeAdditional information
Id

integer

None.

PageProfileId

integer

None.

PageCategoryId

integer

None.

PageTypeId

integer

None.

PageId

integer

None.

PageFriendlyName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "PageProfileId": 2,
    "PageCategoryId": 3,
    "PageTypeId": 4,
    "PageId": 5,
    "PageFriendlyName": "sample string 6"
  },
  {
    "Id": 1,
    "PageProfileId": 2,
    "PageCategoryId": 3,
    "PageTypeId": 4,
    "PageId": 5,
    "PageFriendlyName": "sample string 6"
  }
]

text/html

Sample:
[{"Id":1,"PageProfileId":2,"PageCategoryId":3,"PageTypeId":4,"PageId":5,"PageFriendlyName":"sample string 6"},{"Id":1,"PageProfileId":2,"PageCategoryId":3,"PageTypeId":4,"PageId":5,"PageFriendlyName":"sample string 6"}]

application/xml, text/xml

Sample:
<ArrayOfPageProfileConfig xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KnowledgeBase.Surf.Page">
  <PageProfileConfig>
    <Id>1</Id>
    <PageCategoryId>3</PageCategoryId>
    <PageFriendlyName>sample string 6</PageFriendlyName>
    <PageId>5</PageId>
    <PageProfileId>2</PageProfileId>
    <PageTypeId>4</PageTypeId>
  </PageProfileConfig>
  <PageProfileConfig>
    <Id>1</Id>
    <PageCategoryId>3</PageCategoryId>
    <PageFriendlyName>sample string 6</PageFriendlyName>
    <PageId>5</PageId>
    <PageProfileId>2</PageProfileId>
    <PageTypeId>4</PageTypeId>
  </PageProfileConfig>
</ArrayOfPageProfileConfig>