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": "6ac6a1dc-5b6d-41ce-8400-11439ed4f5ff",
"Release_ID": "3edc973e-94cd-4118-9168-3a3f45d43d23",
"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>3edc973e-94cd-4118-9168-3a3f45d43d23</Release_ID> <Weight>sample string 7</Weight> <Width>sample string 5</Width> <Booking_ID>6ac6a1dc-5b6d-41ce-8400-11439ed4f5ff</Booking_ID> </BookingPackageInputModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"Booking_ID":"6ac6a1dc-5b6d-41ce-8400-11439ed4f5ff","Release_ID":"3edc973e-94cd-4118-9168-3a3f45d43d23","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.