POST api/TimberTheme/UnloadTimberThemes
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": "0377744f-e13a-410f-a401-c2dd5b2887c7",
"themeName": "sample string 3",
"themeMask": 4.0,
"inclusive": true,
"available": [
{
"name": "sample string 1",
"bit": 2.0,
"uniqueId": "f2629b88-f8e2-4d7c-8f9f-4cdc7805a57b"
},
{
"name": "sample string 1",
"bit": 2.0,
"uniqueId": "f2629b88-f8e2-4d7c-8f9f-4cdc7805a57b"
}
],
"included": [
{
"name": "sample string 1",
"bit": 2.0,
"uniqueId": "f2629b88-f8e2-4d7c-8f9f-4cdc7805a57b"
},
{
"name": "sample string 1",
"bit": 2.0,
"uniqueId": "f2629b88-f8e2-4d7c-8f9f-4cdc7805a57b"
}
]
}
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>f2629b88-f8e2-4d7c-8f9f-4cdc7805a57b</UniqueId>
</TimberInThemeViewModel>
<TimberInThemeViewModel>
<Bit>2</Bit>
<Name>sample string 1</Name>
<UniqueId>f2629b88-f8e2-4d7c-8f9f-4cdc7805a57b</UniqueId>
</TimberInThemeViewModel>
</Available>
<Included>
<TimberInThemeViewModel>
<Bit>2</Bit>
<Name>sample string 1</Name>
<UniqueId>f2629b88-f8e2-4d7c-8f9f-4cdc7805a57b</UniqueId>
</TimberInThemeViewModel>
<TimberInThemeViewModel>
<Bit>2</Bit>
<Name>sample string 1</Name>
<UniqueId>f2629b88-f8e2-4d7c-8f9f-4cdc7805a57b</UniqueId>
</TimberInThemeViewModel>
</Included>
<Inclusive>true</Inclusive>
<Index>1</Index>
<ThemeMask>4</ThemeMask>
<ThemeName>sample string 3</ThemeName>
<UniqueId>0377744f-e13a-410f-a401-c2dd5b2887c7</UniqueId>
</TimberThemeViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.