pixi Developer & Integration Documentation

pixiGetInvoicePackageLines

Description

API call returns invoice package lines based on provided filter parameters.


Request Parameters

# Name Type Required Example Description
1 InvoiceNumber string 0 abcdefg Filter: Invoice number
2 InvoiceId integer 0 123 Filter: Invoice Id
3 PackageId integer 0 123 Filter: Package Id

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:pixiGetInvoicePackageLines>
         <dem:InvoiceNumber>abcdefg</dem:InvoiceNumber>
         <dem:InvoiceId>123</dem:InvoiceId>
         <dem:PackageId>123</dem:PackageId>
      </dem:pixiGetInvoicePackageLines>
   </soapenv:Body>
</soapenv:Envelope>

Response


Body 1: Returned package lines

# Name Type Description
1 PackageId integer Package Id
2 InvoiceId integer Invoice Id
3 InvoiceNr string pixi Invoice Number
4 ItemKey integer Item ID
5 ItemNrInt string Item shop number
6 InvlineKey integer Invoice line ID
7 Quantity integer Item quantity

Body 2: Status output

# Name Type Description
1 Status string Execution status (Info/Error)
2 Message string Description of the status

Additional Notes