POST api/Shipping
Request Information
URI Parameters
None.
Body Parameters
OrderShippingItemDto| Name | Description | Type | Additional information |
|---|---|---|---|
| TrackingNumber | string |
None. |
|
| Service | string |
None. |
|
| ShipperReference | string |
None. |
|
| ConsigneeReference | string |
None. |
|
| NofnSequenceBundle | integer |
None. |
|
| NofnTotalBundle | integer |
None. |
|
| Base | decimal number |
None. |
|
| Special | decimal number |
None. |
|
| Discount | decimal number |
None. |
|
| Total | decimal number |
None. |
|
| Terms | string |
None. |
|
| Weight | decimal number |
None. |
|
| RatedWeight | decimal number |
None. |
|
| Msn | integer |
None. |
|
| RequestingSystem | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"TrackingNumber": "sample string 1",
"Service": "sample string 2",
"ShipperReference": "sample string 3",
"ConsigneeReference": "sample string 4",
"NofnSequenceBundle": 5,
"NofnTotalBundle": 6,
"Base": 7.0,
"Special": 8.0,
"Discount": 9.0,
"Total": 10.0,
"Terms": "sample string 11",
"Weight": 12.1,
"RatedWeight": 13.1,
"Msn": 14,
"RequestingSystem": "sample string 15"
}
application/xml, text/xml
Sample:
<OrderShippingItemDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Schumacher.Ship_Exec.API.Data.Models.Shipping"> <Base>7</Base> <ConsigneeReference>sample string 4</ConsigneeReference> <Discount>9</Discount> <Msn>14</Msn> <NofnSequenceBundle>5</NofnSequenceBundle> <NofnTotalBundle>6</NofnTotalBundle> <RatedWeight>13.1</RatedWeight> <RequestingSystem>sample string 15</RequestingSystem> <Service>sample string 2</Service> <ShipperReference>sample string 3</ShipperReference> <Special>8</Special> <Terms>sample string 11</Terms> <Total>10</Total> <TrackingNumber>sample string 1</TrackingNumber> <Weight>12.1</Weight> </OrderShippingItemDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>