DELETE Feature/RemoveFeature
Removes a Feature
Request Information
URI Parameters
None.
Body Parameters
FeatureBinding| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| ParentID | integer |
None. |
|
| Name | string |
Required |
|
| Description | string |
None. |
|
| Unit |
Kg, g, m, Km, N... |
string |
None. |
| TypeID | integer |
None. |
|
| Disabled |
If set, invalidate this Feature |
date |
None. |
| UsageLimit |
Number of times a value for this property can be used for the same entity. If 0, no limit and, then, this is a list property. |
integer |
None. |
| SortOrder | integer |
None. |
|
| ViewFormat |
Format used to show this value. E.g. surround by (), preceded by > |
string |
None. |
| Range |
Used to specify a lower and upper limit range for numeric values. Enabled when Min != Max Used to specify a lower and upper limit length for text values. Enabled when Max > 0 |
Range |
None. |
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"ParentID": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"Unit": "sample string 4",
"TypeID": 5,
"Disabled": "2025-12-06T09:16:31.3626+01:00",
"UsageLimit": 6,
"SortOrder": 7,
"ViewFormat": "sample string 8",
"Range": {
"Min": 1.0,
"Max": 2.0
},
"Lang": "sample string 9",
"StoreID": 10
}
application/xml, text/xml
Sample:
<FeatureBinding xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Binding.Feature">
<Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 9</Lang>
<StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">10</StoreID>
<Description>sample string 3</Description>
<Disabled>2025-12-06T09:16:31.3626+01:00</Disabled>
<Name>sample string 2</Name>
<ParentID>1</ParentID>
<Range xmlns:d2p1="http://schemas.datacontract.org/2004/07/ShopworldApi.Core.Models.Feature">
<d2p1:Max>2</d2p1:Max>
<d2p1:Min>1</d2p1:Min>
</Range>
<SortOrder>7</SortOrder>
<TypeID>5</TypeID>
<Unit>sample string 4</Unit>
<UsageLimit>6</UsageLimit>
<ViewFormat>sample string 8</ViewFormat>
<ID>1</ID>
</FeatureBinding>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.