Description
API call that returns updated Invoices
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
Since |
string |
0 |
YYYY-MM-DD hh:mm:ss |
Filter: Get invoices that were updated after specified date |
| 2 |
Rows |
integer |
0 |
100 |
Define maximum rows that will be returned |
| 3 |
PaymentType |
string |
0 |
C |
Filter: Only return invoices with specified PaymentType |
| 4 |
OffSet |
integer |
0 |
15 |
Start with next invoice ID specified in Offset parameter |
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:pixiGetUpdatedInvoices>
<dem:Since>YYYY-MM-DD hh:mm:ss</dem:Since>
<dem:Rows>100</dem:Rows>
<dem:PaymentType>C</dem:PaymentType>
<dem:OffSet>15</dem:OffSet>
</dem:pixiGetUpdatedInvoices>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Updated invoices since specified date
| # |
Name |
Type |
Description |
| 1 |
InvoiceKey |
integer |
Invoice ID |
| 2 |
InvoiceNr |
string |
Invoice number |
| 3 |
UpdateDate |
string |
Last update date connected to the invoice |
| 4 |
ShopID |
string |
Shop code |
| 5 |
PaymentCode |
string |
Payment code connected to the invoice |
| 6 |
PaymentText |
string |
Payment text / description |
Body 2: Error response
| # |
Name |
Type |
Description |
| 1 |
Status |
string |
Status of the responce |
| 2 |
Message |
string |
Description of the error response |
Additional Notes