DELETE Catalog/RemoveComponent
Removes a Component with no children
Request Information
URI Parameters
None.
Body Parameters
ComponentBinding| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Disabled | date |
None. |
|
| ProductID | integer |
None. |
|
| Name | string |
Required String length: inclusive between 0 and 100 |
|
| Description | string |
None. |
|
| MinimumQuantity | decimal number |
Range: inclusive between 0 and 2147483647 |
|
| MaximumQuantity | decimal number |
Range: inclusive between 0 and 2147483647 |
|
| SortOrder |
order of this Component within product |
integer |
None. |
| Optional |
A composite product can be ordered without an optional component |
boolean |
None. |
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"Disabled": "2025-12-06T09:15:27.9647993+01:00",
"ProductID": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"MinimumQuantity": 5.0,
"MaximumQuantity": 6.0,
"SortOrder": 7,
"Optional": true,
"Lang": "sample string 9",
"StoreID": 10
}
application/xml, text/xml
Sample:
<ComponentBinding xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Core.Models.Catalog"> <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 4</Description> <Disabled>2025-12-06T09:15:27.9647993+01:00</Disabled> <MaximumQuantity>6</MaximumQuantity> <MinimumQuantity>5</MinimumQuantity> <Name>sample string 3</Name> <Optional>true</Optional> <ProductID>2</ProductID> <SortOrder>7</SortOrder> <ID>1</ID> </ComponentBinding>
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.