Description
Change status on supplier order.
Id - Status of supplier order
1 - NEW
2 - ORDERED
3 - CONFIRMED
4 - CLOSED
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
AppName |
string |
1 |
Sample text |
Name of application which execute API call. |
| 2 |
UserId |
integer |
0 |
123 |
(optional parameter) Id of user who execute API call. |
| 3 |
UserName |
string |
1 |
Sample text |
User name of user who execute API call. |
| 4 |
ChangeStatusIdTo |
integer |
1 |
123 |
Id of status to which we are changing . |
| 5 |
SupplierOrderId |
integer |
0 |
123 |
(optional parameter) Id of (one) supplier order. Example: @SupplierOrderId = 13 |
| 6 |
SupplierOrderIds |
string |
0 |
Sample text |
(optional parameter) Ids of (more) supplier orders in strings separated with comma. Example: @SupplierOrderIds = ('13','25') |
| 7 |
SupplierOrderNR |
integer |
0 |
123 |
(optional parameter) InternalNumber of (one) supplier order. Example: @SupplierOrderNR = 70000013 |
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:pixiSupplierOrderChangeStatus>
<dem:AppName>Sample text</dem:AppName>
<dem:UserId>123</dem:UserId>
<dem:UserName>Sample text</dem:UserName>
<dem:ChangeStatusIdTo>123</dem:ChangeStatusIdTo>
<dem:SupplierOrderId>123</dem:SupplierOrderId>
<dem:SupplierOrderIds>Sample text</dem:SupplierOrderIds>
<dem:SupplierOrderNR>123</dem:SupplierOrderNR>
</dem:pixiSupplierOrderChangeStatus>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Status output
| # |
Name |
Type |
Description |
| 1 |
ReturnCode |
string |
Return Code (Success/ERROR) |
| 2 |
ErrorMessage |
string |
Error message |
Additional Notes