pixi Developer & Integration Documentation

pixiReadDeliveryItems

Description

API call returns goods recived line records


Request Parameters

# Name Type Required Example Description
1 SDelDkey integer 0 123 Delivery line id. If @RowCount is NULL then it returns only this row, otherwise next @RowCount records.
2 CreateDateFrom string 0 YYYY-MM-DD hh:mm:ss Create Date from (including)
3 CreateDateTo string 0 YYYY-MM-DD hh:mm:ss Create Date to (excluding)
4 UpdateDateFrom string 0 YYYY-MM-DD hh:mm:ss Update Date from (including)
5 UpdateDateTo string 0 YYYY-MM-DD hh:mm:ss Update Date To (excluding)
6 CreateAndUpdateDateFrom string 0 YYYY-MM-DD hh:mm:ss Create or Update Date from (including)
7 CreateAndUpdateDateTo string 0 YYYY-MM-DD hh:mm:ss Create or Update Date to (excluding)
8 RowCount integer 0 123 Maximum number of records returned

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:pixiReadDeliveryItems>
         <dem:SDelDkey>123</dem:SDelDkey>
         <dem:CreateDateFrom>YYYY-MM-DD hh:mm:ss</dem:CreateDateFrom>
         <dem:CreateDateTo>YYYY-MM-DD hh:mm:ss</dem:CreateDateTo>
         <dem:UpdateDateFrom>YYYY-MM-DD hh:mm:ss</dem:UpdateDateFrom>
         <dem:UpdateDateTo>YYYY-MM-DD hh:mm:ss</dem:UpdateDateTo>
         <dem:CreateAndUpdateDateFrom>YYYY-MM-DD hh:mm:ss</dem:CreateAndUpdateDateFrom>
         <dem:CreateAndUpdateDateTo>YYYY-MM-DD hh:mm:ss</dem:CreateAndUpdateDateTo>
         <dem:RowCount>123</dem:RowCount>
      </dem:pixiReadDeliveryItems>
   </soapenv:Body>
</soapenv:Envelope>

Response


Body 1: Delivery item information

# Name Type Description
1 SDelDkey integer Delivery detail ID
2 SDelDHref integer Delivery header ID
3 SDelDItemRef integer Item ID
4 SDelDItemName string Item name
5 SDelDqtyDelivered number Delivered item quantity
6 SDelDqtyOrdered number Ordered item quantity
7 SDelDsorderlineRef integer Purchase orderline reference
8 SDelDsPrice number Delivery item price
9 SDelDsDiscount number Delivery item discount
10 SDelDsFinalPrice number Delivery final item price
11 SDelDcreateDate string Create date of the record
12 SDelDcreateEmp string Create employee of the record
13 SDelDupdateDate string Update date of the record
14 SDelDupdateEmp string Update employee of the record
15 SDelDsAddDiscount number Delivery item additional discount
16 SDelDsMidPrice number Delivery item discounted price
17 BatchNumber string Item batch number
18 BestBeforeDate string Item best before date

Additional Notes