POST api/TimberTheme/CopyTimberTheme
Request Information
URI Parameters
None.
Body Parameters
TimberThemeViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Index | integer |
None. |
|
| UniqueId | globally unique identifier |
None. |
|
| ThemeName | string |
None. |
|
| ThemeMask | decimal number |
None. |
|
| Inclusive | boolean |
None. |
|
| Available | Collection of TimberInThemeViewModel |
None. |
|
| Included | Collection of TimberInThemeViewModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"index": 1,
"uniqueId": "e2305c8a-3ccb-41e1-a153-de86b12e28e8",
"themeName": "sample string 3",
"themeMask": 4.0,
"inclusive": true,
"available": [
{
"name": "sample string 1",
"bit": 2.0,
"uniqueId": "d91bf374-496f-4b1e-bde4-86ae7a987136"
},
{
"name": "sample string 1",
"bit": 2.0,
"uniqueId": "d91bf374-496f-4b1e-bde4-86ae7a987136"
}
],
"included": [
{
"name": "sample string 1",
"bit": 2.0,
"uniqueId": "d91bf374-496f-4b1e-bde4-86ae7a987136"
},
{
"name": "sample string 1",
"bit": 2.0,
"uniqueId": "d91bf374-496f-4b1e-bde4-86ae7a987136"
}
]
}
application/xml, text/xml
Sample:
<TimberThemeViewModel 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>d91bf374-496f-4b1e-bde4-86ae7a987136</UniqueId>
</TimberInThemeViewModel>
<TimberInThemeViewModel>
<Bit>2</Bit>
<Name>sample string 1</Name>
<UniqueId>d91bf374-496f-4b1e-bde4-86ae7a987136</UniqueId>
</TimberInThemeViewModel>
</Available>
<Included>
<TimberInThemeViewModel>
<Bit>2</Bit>
<Name>sample string 1</Name>
<UniqueId>d91bf374-496f-4b1e-bde4-86ae7a987136</UniqueId>
</TimberInThemeViewModel>
<TimberInThemeViewModel>
<Bit>2</Bit>
<Name>sample string 1</Name>
<UniqueId>d91bf374-496f-4b1e-bde4-86ae7a987136</UniqueId>
</TimberInThemeViewModel>
</Included>
<Inclusive>true</Inclusive>
<Index>1</Index>
<ThemeMask>4</ThemeMask>
<ThemeName>sample string 3</ThemeName>
<UniqueId>e2305c8a-3ccb-41e1-a153-de86b12e28e8</UniqueId>
</TimberThemeViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.