GET api/SampleData/GetPublicProfileTabs

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TabHeader
NameDescriptionTypeAdditional information
Key

integer

None.

HeaderText

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "key": 1,
    "headerText": "sample string 2"
  },
  {
    "key": 1,
    "headerText": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTabHeader xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GTI.DW.PeopleProfile.Domain.Models">
  <TabHeader>
    <HeaderText>sample string 2</HeaderText>
    <Key>1</Key>
  </TabHeader>
  <TabHeader>
    <HeaderText>sample string 2</HeaderText>
    <Key>1</Key>
  </TabHeader>
</ArrayOfTabHeader>