DELETE api/productdbs/{id}/products
Delete some products in product catalog
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
product catalog id |
string |
Required |
Body Parameters
deleted product datas
PdbDeleteDatasName | Description | Type | Additional information |
---|---|---|---|
ProductKeys |
deleted product key values |
Collection of string |
None. |
MatchKeyField |
Specify the Key for product matching, for example, the ID(key) can be VendorSku |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "ProductKeys": [ "sample string 1", "sample string 2" ], "MatchKeyField": "sample string 1" }
application/xml, text/xml
Sample:
<PdbDeleteDatas> <ProductKeys> <string>sample string 1</string> <string>sample string 2</string> </ProductKeys> <MatchKeyField>sample string 1</MatchKeyField> </PdbDeleteDatas>
Response Information
Resource Description
whether sucess
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean>true</boolean>