GET api/BusinessModules/{id}/TabViewSettings
Gets the TabView for the Business Module with the specified id
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The id of the Business Module |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns a TabView.
WorkPoint365.WebAPI.Model.TabViewName | Description | Type | Additional 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": "b474e450-212e-4053-9ba5-a3d1ae7ddbf9", "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>b474e450-212e-4053-9ba5-a3d1ae7ddbf9</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>