PUT api/CaseCartOrder/StartRetour?token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
Body Parameters
MDLCaseCartOrderMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| CaseCartOrderId | integer |
None. |
|
| ParkingSpaceBarcode | string |
None. |
|
| OrderContents | Collection of MDLCaseCartOrderMessageContent |
None. |
|
| MandatorId | integer |
None. |
|
| WorkplaceId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CaseCartOrderId": 1,
"ParkingSpaceBarcode": "sample string 2",
"OrderContents": [
{
"CaseCartOrderContentId": 1,
"ContentCount": 2,
"Comment": "sample string 3",
"StorageLayer4Id": 4,
"StorageLayer4ConsumablesId": 5
},
{
"CaseCartOrderContentId": 1,
"ContentCount": 2,
"Comment": "sample string 3",
"StorageLayer4Id": 4,
"StorageLayer4ConsumablesId": 5
}
],
"MandatorId": 3,
"WorkplaceId": 4
}
application/xml, text/xml
Sample:
<MDLCaseCartOrderMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Asanus.BarCon.Middleware.Shared">
<CaseCartOrderId>1</CaseCartOrderId>
<MandatorId>3</MandatorId>
<OrderContents>
<MDLCaseCartOrderMessageContent>
<CaseCartOrderContentId>1</CaseCartOrderContentId>
<Comment>sample string 3</Comment>
<ContentCount>2</ContentCount>
<StorageLayer4ConsumablesId>5</StorageLayer4ConsumablesId>
<StorageLayer4Id>4</StorageLayer4Id>
</MDLCaseCartOrderMessageContent>
<MDLCaseCartOrderMessageContent>
<CaseCartOrderContentId>1</CaseCartOrderContentId>
<Comment>sample string 3</Comment>
<ContentCount>2</ContentCount>
<StorageLayer4ConsumablesId>5</StorageLayer4ConsumablesId>
<StorageLayer4Id>4</StorageLayer4Id>
</MDLCaseCartOrderMessageContent>
</OrderContents>
<ParkingSpaceBarcode>sample string 2</ParkingSpaceBarcode>
<WorkplaceId>4</WorkplaceId>
</MDLCaseCartOrderMessage>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
MDLDefaultResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Successfull | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Successfull": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<MDLDefaultResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Asanus.BarCon.Middleware.Shared"> <Message>sample string 2</Message> <Successfull>true</Successfull> </MDLDefaultResponse>