Description
API call deletes an item property record connected to a specific supplier.
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
ItemKey |
integer |
0 |
1234 |
Filter: pixi* item ID. |
| 2 |
ItemNrInt |
string |
0 |
abc123 |
Filter: Shop item number. |
| 3 |
SupplNr |
string |
1 |
SNum |
Filter: Supplier number. |
| 4 |
EAN |
string |
0 |
0123456789abc |
Filter: Item barcode. |
Request body
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dem="https://api.pixi.eu/soap/demosandbox/">
<soapenv:Header/>
<soapenv:Body>
<dem:pixiDeleteItemSupplier>
<dem:ItemKey>1234</dem:ItemKey>
<dem:ItemNrInt>abc123</dem:ItemNrInt>
<dem:SupplNr>SNum</dem:SupplNr>
<dem:EAN>0123456789abc</dem:EAN>
</dem:pixiDeleteItemSupplier>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Success response.
| # |
Name |
Type |
Description |
| 1 |
Status |
string |
Status of the success response. (normaly: "Success") |
| 2 |
Message |
string |
Details of the deleted record. |
Body 2: Error response.
| # |
Name |
Type |
Description |
| 1 |
Status |
string |
Status of the error response. (normaly: "Error") |
| 2 |
Message |
string |
Error description. |
Additional Notes
Removing of such a record is only possible when there are no open supplier orders for this item. To identify the item itself one of paramters @ItemKey, @ItemNrInt needs to be provided.