pixi Developer & Integration Documentation

pixiRemoveItemFromPicklist

Description

API call deletes item in specified quantity from picklist.


Request Parameters

# Name Type Required Example Description
1 PickListNr integer 1 1234 Picklist number.
2 EanUpc string 1 abc123 Item Barcode.
3 BinName string 1 A-1-1 Bin Name.
4 Quantity integer 1 1 Quantity to remove.

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:pixiRemoveItemFromPicklist>
         <dem:PickListNr>1234</dem:PickListNr>
         <dem:EanUpc>abc123</dem:EanUpc>
         <dem:BinName>A-1-1</dem:BinName>
         <dem:Quantity>1</dem:Quantity>
      </dem:pixiRemoveItemFromPicklist>
   </soapenv:Body>
</soapenv:Envelope>

Response


Body 1: Response Message.

# Name Type Description
1 Status string [Status] of the response. ("SUCCESS" or "ERROR")
2 Message string Detailed success or error message.

Additional Notes