pixi Developer & Integration Documentation

pixiGetPosJournal

Description

The function returns all POS events within given period of time, for a given location and a given cash register. (Both these parameters can be empty meaning "all"). Return dataset is equivalent to the report "POS Journal" available in pixi* Reports.


Request Parameters

# Name Type Required Example Description
1 FromDate string 0 YYYY-MM-DD hh:mm:ss Start date of the event range.
2 ToDate string 0 YYYY-MM-DD hh:mm:ss End date of the event range.
3 LocID string 0 Sample text Location Id
4 RegisterID string 0 Sample text POS Register Id
5 ResultCode string 0 A
6 ResultText string 0 Sample text

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:pixiGetPosJournal>
         <dem:FromDate>YYYY-MM-DD hh:mm:ss</dem:FromDate>
         <dem:ToDate>YYYY-MM-DD hh:mm:ss</dem:ToDate>
         <dem:LocID>Sample text</dem:LocID>
         <dem:RegisterID>Sample text</dem:RegisterID>
         <dem:ResultCode>A</dem:ResultCode>
         <dem:ResultText>Sample text</dem:ResultText>
      </dem:pixiGetPosJournal>
   </soapenv:Body>
</soapenv:Envelope>

Response


Body 1: POS events

# Name Type Description
1 EventTime string Event Time
2 RegisterID string POS Register Id
3 CreatedBy string Created By
4 UpdatedBy string Updated By
5 EventType string Event Type
6 EventDescription string Event Description
7 InvoiceNr string Invoice Nr
8 InvoiceAmount number Invoice Amount
9 EventComment string Event Comment
10 AmountOut number Amount Out
11 VatHigh number Vat High
12 VatLow number Vat Low
13 AmountIn number Amount In
14 RegisterValue number Register Value

Additional Notes