GET api/TimberTheme/GetCopiedTheme?index={index}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| index | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
TimberThemeDetailViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ThemeName | string |
None. |
|
| Inclusive | boolean |
None. |
|
| Available | Collection of TimberInThemeViewModel |
None. |
|
| Included | Collection of TimberInThemeViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"themeName": "sample string 1",
"inclusive": true,
"available": [
{
"name": "sample string 1",
"bit": 2.0,
"uniqueId": "00a9ac97-7c35-481c-8a0e-98e027b9ad44"
},
{
"name": "sample string 1",
"bit": 2.0,
"uniqueId": "00a9ac97-7c35-481c-8a0e-98e027b9ad44"
}
],
"included": [
{
"name": "sample string 1",
"bit": 2.0,
"uniqueId": "00a9ac97-7c35-481c-8a0e-98e027b9ad44"
},
{
"name": "sample string 1",
"bit": 2.0,
"uniqueId": "00a9ac97-7c35-481c-8a0e-98e027b9ad44"
}
]
}
application/xml, text/xml
Sample:
<TimberThemeDetailViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.ViewModels">
<Available>
<TimberInThemeViewModel>
<Bit>2</Bit>
<Name>sample string 1</Name>
<UniqueId>00a9ac97-7c35-481c-8a0e-98e027b9ad44</UniqueId>
</TimberInThemeViewModel>
<TimberInThemeViewModel>
<Bit>2</Bit>
<Name>sample string 1</Name>
<UniqueId>00a9ac97-7c35-481c-8a0e-98e027b9ad44</UniqueId>
</TimberInThemeViewModel>
</Available>
<Included>
<TimberInThemeViewModel>
<Bit>2</Bit>
<Name>sample string 1</Name>
<UniqueId>00a9ac97-7c35-481c-8a0e-98e027b9ad44</UniqueId>
</TimberInThemeViewModel>
<TimberInThemeViewModel>
<Bit>2</Bit>
<Name>sample string 1</Name>
<UniqueId>00a9ac97-7c35-481c-8a0e-98e027b9ad44</UniqueId>
</TimberInThemeViewModel>
</Included>
<Inclusive>true</Inclusive>
<ThemeName>sample string 1</ThemeName>
</TimberThemeDetailViewModel>