pixi Developer & Integration Documentation

pixiSetInvoiceShippingInformation

Description

Sets weight and number of packages


Request Parameters

# Name Type Required Example Description
1 InvoiceNr string 0 123 Invoice number
2 PackageNetWeight string 0 123 Package weight (netto)
3 PackageGrossWeight string 0 123 Package weight (bruto)
4 Packages integer 0 13 Number of packages
5 ShipVendor string 0 DHL Ship vendor code

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:pixiSetInvoiceShippingInformation>
         <dem:InvoiceNr>123</dem:InvoiceNr>
         <dem:PackageNetWeight>123</dem:PackageNetWeight>
         <dem:PackageGrossWeight>123</dem:PackageGrossWeight>
         <dem:Packages>13</dem:Packages>
         <dem:ShipVendor>DHL</dem:ShipVendor>
      </dem:pixiSetInvoiceShippingInformation>
   </soapenv:Body>
</soapenv:Envelope>

Response


Body 1: Picklist data

# Name Type Description
0 Status integer Status Code (200 means OK, 500 means that data could not be updated, 400 means that Invoice was not found in pixi*)
1 Message string Status Message
2 InvoiceNr string InvoiceNr that was updated
3 Packages integer Number of packages
4 PackageNetWeight number Package net weight
5 PackageGrossWeight number Package gross weight
6 ShipVendor string Ship Vendor for this invoice

Additional Notes