pixi Developer & Integration Documentation

pixiGetOrderChanges

Description

API call to get all changes to an order


Request Parameters

# Name Type Required Example Description
1 ChangeType string 0 abcdefg Type of Change, or empty if all (available types: CORDER, CORDERL, UORDER, UORDERL, IORDER, SORDER, ALL)
2 ShopID string 0 abcdefg pixi Shop ID or empty, if all shops
3 PaymentType string 0 Single character : "g" pixi payment code or empty, if all payment codes
4 DateFrom string 0 YYYY-MM-DD hh:mm:ss Date Filter From
5 DateTo string 0 YYYY-MM-DD hh:mm:ss Date Filter To

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:pixiGetOrderChanges>
         <dem:ChangeType>abcdefg</dem:ChangeType>
         <dem:ShopID>abcdefg</dem:ShopID>
         <dem:PaymentType>Single character : "g"</dem:PaymentType>
         <dem:DateFrom>YYYY-MM-DD hh:mm:ss</dem:DateFrom>
         <dem:DateTo>YYYY-MM-DD hh:mm:ss</dem:DateTo>
      </dem:pixiGetOrderChanges>
   </soapenv:Body>
</soapenv:Envelope>

Response


Body 1: Result output

# Name Type Description
1 OrderNr integer pixi Order Number
2 ChangeType string Change Type (CORDER : Check for New Orders; UORDER : Check for updated order details; UORDERL : Check for updated orderline details; CORDERL : Check for updated orderline details; IORDER : Check for invoiced orderlines; SORDER : Check for invoiced orderlines; )
3 Timestamp string Timestamp
4 Param1 string Param1 (Empty, OrderlineKey, InvoiceNr)

Additional Notes