CreateMovementOrders
This function is used to create movement orders.
Tags: CreateMovementOrders, Operation, CreateMovementOrdersResponse
Request XML
POST /xxx/service.asmx HTTP/1.1
Host: api.ongoingsystems.se
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://ongoingsystems.se/Automation/CreateMovementOrders"
<?xml version="1.0" encoding="utf-8" ?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<CreateMovementOrders xmlns="http://ongoingsystems.se/Automation">
<UserName>string</UserName>
<Password>string</Password>
<Operation>
<Context>string</Context>
<ArticleItems>
<ArticleItem_CreateMovementOrder>
<ArticleItemId>int</ArticleItemId>
</ArticleItem_CreateMovementOrder>
<ArticleItem_CreateMovementOrder>
<ArticleItemId>int</ArticleItemId>
</ArticleItem_CreateMovementOrder>
</ArticleItems>
</Operation>
</CreateMovementOrders>
</soap:Body>
</soap:Envelope>
Request specification
CreateMovementOrders |
UserName |
str(50) |
Req. |
Your username |
Password |
str(50) |
Req. |
Your password |
Operation |
object |
Req. |
Specifies the article items you want to create movement orders for. |
Operation |
Context |
str |
|
Used to provide Ongoing WMS with additional information. |
ArticleItems |
int[] |
|
List of article item IDs to create movement orders for. |
Response XML
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8" ?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<CreateMovementOrdersResponse xmlns="http://ongoingsystems.se/Automation">
<CreateMovementOrdersResult>
<Success>boolean</Success>
<Message>string</Message>
</CreateMovementOrdersResult>
</CreateMovementOrdersResponse>
</soap:Body>
</soap:Envelope>
Response specification
CreateMovementOrdersResponse |
Success |
bool |
Indicates if the call was successful. |
Message |
str |
Message. |