POST api/Booking/Cargo/Save
Request Information
URI Parameters
None.
Body Parameters
BookingPackageInputModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Booking_ID | globally unique identifier |
None. |
|
| Release_ID | globally unique identifier |
None. |
|
| PackageType_ID | integer |
None. |
|
| Length | string |
None. |
|
| Width | string |
None. |
|
| Height | string |
None. |
|
| Weight | string |
None. |
|
| NumberOfPieces | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Booking_ID": "6d145ae3-7677-4533-b15e-4746a0666531",
"Release_ID": "55c40561-fe37-448a-bc31-bbff21189cd0",
"PackageType_ID": 3,
"Length": "sample string 4",
"Width": "sample string 5",
"Height": "sample string 6",
"Weight": "sample string 7",
"NumberOfPieces": 8
}
application/xml, text/xml
Sample:
<BookingPackageInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cyzerg.Model.WMS.InputOutputModels"> <Height>sample string 6</Height> <Length>sample string 4</Length> <NumberOfPieces>8</NumberOfPieces> <PackageType_ID>3</PackageType_ID> <Release_ID>55c40561-fe37-448a-bc31-bbff21189cd0</Release_ID> <Weight>sample string 7</Weight> <Width>sample string 5</Width> <Booking_ID>6d145ae3-7677-4533-b15e-4746a0666531</Booking_ID> </BookingPackageInputModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"Booking_ID":"6d145ae3-7677-4533-b15e-4746a0666531","Release_ID":"55c40561-fe37-448a-bc31-bbff21189cd0","PackageType_ID":3,"Length":"sample string 4","Width":"sample string 5","Height":"sample string 6","Weight":"sample string 7","NumberOfPieces":8}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.