Description
API call returns goods recived header records
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
SDelHKey |
integer |
0 |
123 |
Delivery header 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:pixiReadDeliveryHeaders>
<dem:SDelHKey>123</dem:SDelHKey>
<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:pixiReadDeliveryHeaders>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Delivery header information
| # |
Name |
Type |
Description |
| 1 |
SDelHKey |
integer |
Delivery header ID |
| 2 |
SDelHDate |
string |
Delivery Date |
| 3 |
SDelHLocationID |
string |
Delivery Location ID |
| 4 |
SDelHSupplNr |
string |
Supplier Number of delivery |
| 5 |
SDelHNr |
integer |
Delivery Number |
| 6 |
SDelHNote |
string |
Delivery Comment |
| 7 |
SDelHStatus |
string |
Status of Delivery |
| 8 |
SDelHCreateDate |
string |
Create Date of the Delivery |
| 9 |
SDelHCreateEmp |
string |
User that created the Delivery |
| 10 |
SDelHUpdateDate |
string |
Update Date of the Delivery |
| 11 |
SDelHUpdateEmp |
string |
User that last updated the Delivery |
| 12 |
SDelHextInvoiceNr |
string |
Invoice Number from Supplier |
| 13 |
SDelHextOrderNr |
string |
Order Number from Supplier |
| 14 |
SDelHfinalDicsount |
number |
Delivery final discount |
| 15 |
PiccoUser |
string |
Mobile user working on delivery |
| 16 |
LockedByPicco |
string |
Delivery is locked by mobile user |
| 17 |
WasReopened |
boolean |
Flag indicating that delivery was reopened |
Additional Notes