Description
This API call returns all order comments, with their creation date and user, optionally filtered by the order number or the order number shop. The order number shop is also known as order number external. If neither filter is provided, all comments are returned.
Request Parameters
# |
Name |
Type |
Required |
Example |
Description |
1 |
OrderNr |
integer |
0 |
120544 |
Filter by internal pixi* order number. If neither OrderNr nor OrderNrShop is provided, all comments are returned. |
2 |
OrderNrShop |
string |
0 |
20100602114632 |
Filter by order number external (shop order number). If neither OrderNr nor OrderNrShop is provided, all comments are returned. |
3 |
Since |
datetime |
0 |
2026-01-01 00:00:00 |
Returns only comments created after this date/time. If not provided, defaults to 2000-01-01 (effectively all comments). |
4 |
RowCount |
integer |
0 |
100 |
Maximum number of rows returned. Accepted range: 1–1000. If not provided, 0, or greater than 1000, it is set to 1000. |
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:pixiGetOrderComments>
<dem:OrderNr>120544</dem:OrderNr>
<dem:OrderNrShop>20100602114632</dem:OrderNrShop>
<dem:Since>2026-01-01 00:00:00</dem:Since>
<dem:RowCount>100</dem:RowCount>
</dem:pixiGetOrderComments>
</soapenv:Body>
</soapenv:Envelope>Response
Field |
Type |
Description |
Comment |
varchar(MAX) |
Order comment text. |
CreateEmp |
varchar(50) |
pixi* user name that created the comment. |
CreateDate |
datetime |
Date and time the comment was created. |
OrderNrExternal |
varchar(50) |
Order number external (shop order number). |
OrderNr |
int |
Internal pixi* order number. |
Additional Notes
If neither OrderNr nor OrderNrShop is provided, all comments are returned (no order filter).
If both are provided, comments matching either order number are returned.
Since filters comments to only those created after the specified date/time. Defaults to 2000-01-01 if omitted.
The result is always limited to a maximum of 1000 rows. RowCount values of 0, NULL, or greater than 1000 are automatically set to 1000.