DELETE api/productdbs/{id}/products

Delete some products in product catalog

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

product catalog id

string

Required

Body Parameters

deleted product datas

PdbDeleteDatas
NameDescriptionTypeAdditional 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

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean>true</boolean>