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": "04d61fa9-f32e-43b3-ab07-29d8c58e77ed",
"Release_ID": "66d73204-ceab-429b-80ff-1be61082f77c",
"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>66d73204-ceab-429b-80ff-1be61082f77c</Release_ID> <Weight>sample string 7</Weight> <Width>sample string 5</Width> <Booking_ID>04d61fa9-f32e-43b3-ab07-29d8c58e77ed</Booking_ID> </BookingPackageInputModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"Booking_ID":"04d61fa9-f32e-43b3-ab07-29d8c58e77ed","Release_ID":"66d73204-ceab-429b-80ff-1be61082f77c","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.