GET api/BusinessModules/{id}/TabViewSettings

Gets the TabView for the Business Module with the specified id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The id of the Business Module

string

Required

Body Parameters

None.

Response Information

Resource Description

Returns a TabView.

WorkPoint365.WebAPI.Model.TabView
NameDescriptionTypeAdditional information
BusinessModuleId

Gets or sets the business module identifier.

globally unique identifier

None.

PageWebRelativeUrl

Gets or sets the page web relative url identifier. If the page web relative url is null, it's the default tabview for the business module

string

None.

Tabs

Gets or sets the tabs.

Collection of WorkPoint365.WebAPI.Model.TabView+Tab

None.

Response Formats

application/json, text/json

Sample:
{
  "BusinessModuleId": "0f0d66ce-eefd-4242-9174-2c8652ac6121",
  "PageWebRelativeUrl": "sample string 1",
  "Tabs": [
    {
      "Type": "RootSiteList",
      "Title": "sample string 1",
      "TitleResource": {
        "1": "sample string 2",
        "3": "sample string 4"
      }
    },
    {
      "Type": "RootSiteList",
      "Title": "sample string 1",
      "TitleResource": {
        "1": "sample string 2",
        "3": "sample string 4"
      }
    }
  ]
}

application/xml, text/xml

Sample:
<TabView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WorkPoint365.WebAPI.Model">
  <BusinessModuleId>0f0d66ce-eefd-4242-9174-2c8652ac6121</BusinessModuleId>
  <PageWebRelativeUrl>sample string 1</PageWebRelativeUrl>
  <Tabs>
    <TabView.Tab>
      <Title>sample string 1</Title>
      <TitleResource xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:KeyValueOfintstring>
          <d4p1:Key>1</d4p1:Key>
          <d4p1:Value>sample string 2</d4p1:Value>
        </d4p1:KeyValueOfintstring>
        <d4p1:KeyValueOfintstring>
          <d4p1:Key>3</d4p1:Key>
          <d4p1:Value>sample string 4</d4p1:Value>
        </d4p1:KeyValueOfintstring>
      </TitleResource>
    </TabView.Tab>
    <TabView.Tab>
      <Title>sample string 1</Title>
      <TitleResource xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:KeyValueOfintstring>
          <d4p1:Key>1</d4p1:Key>
          <d4p1:Value>sample string 2</d4p1:Value>
        </d4p1:KeyValueOfintstring>
        <d4p1:KeyValueOfintstring>
          <d4p1:Key>3</d4p1:Key>
          <d4p1:Value>sample string 4</d4p1:Value>
        </d4p1:KeyValueOfintstring>
      </TitleResource>
    </TabView.Tab>
  </Tabs>
</TabView>