POST v1/Shipments
Creates a new shipment for an order.
Request Information
Requires Authorization!
URI Parameters
None.
Body Parameters
AddShipmentInfoName | Description | Type | Additional information |
---|---|---|---|
OrderId |
Order identifier for which you want to add a shipment |
integer |
None. |
WarehouseId |
Optional Warehouse for which the shipment is created. |
integer |
None. |
OrderRows |
Optional collection of OrderRow identifiers |
Collection of integer |
None. |
ShippingCode |
Optional Shipping code for shipment. |
string |
None. |
PreferredShipDate |
Optional preferred ship date. |
date |
None. |
GeneratePickList |
Optional toggle to indicate whether the picklist should be generated on creation of the shipment. |
boolean |
None. |
GeneratePackingSlip |
Optional toggle to indicate whether the packingslip should be generated on creation of the shipment. |
boolean |
None. |
PackingSlipTemplateId | integer |
None. |
|
CarrierAccountId |
Optional id of CarrierAccount that should be used for the shipment. |
integer |
None. |
CashOnDeliveryPayment |
optional amount to be paid to the postman when the shipment is delivered. |
decimal number |
None. |
Parameters |
Optional collection of key-value pairs. |
Collection of OrderShipmentParam |
None. |
Request Formats
application/json, text/json
{ "OrderId": 1, "WarehouseId": 2, "OrderRows": [ 1, 2 ], "ShippingCode": "sample string 3", "PreferredShipDate": "2021-12-02T20:19:38.0916117+01:00", "GeneratePickList": true, "GeneratePackingSlip": true, "PackingSlipTemplateId": 1, "CarrierAccountId": 1, "CashOnDeliveryPayment": 1.0, "Parameters": [ { "Key": "sample string 1", "Value": "sample string 2" }, { "Key": "sample string 1", "Value": "sample string 2" } ] }
application/xml, text/xml
<AddShipmentInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <OrderId>1</OrderId> <WarehouseId>2</WarehouseId> <OrderRows> <OrderRowId>1</OrderRowId> <OrderRowId>2</OrderRowId> </OrderRows> <ShippingCode>sample string 3</ShippingCode> <PreferredShipDate>2021-12-02T20:19:38.0916117+01:00</PreferredShipDate> <GeneratePickList>true</GeneratePickList> <GeneratePackingSlip>true</GeneratePackingSlip> <PackingSlipTemplateId>1</PackingSlipTemplateId> <CarrierAccountId>1</CarrierAccountId> <CashOnDeliveryPayment>1</CashOnDeliveryPayment> <Parameters> <Parameter> <Key>sample string 1</Key> <Value>sample string 2</Value> </Parameter> <Parameter> <Key>sample string 1</Key> <Value>sample string 2</Value> </Parameter> </Parameters> </AddShipmentInfo>
Response Information
Resource Description
Result. HttpStatus OK if shipment was created succesfully
HttpResponseMessage
Name | Description | Type | Additional information |
---|---|---|---|
Version | Version |
None. |
|
Content | HttpContent |
None. |
|
StatusCode | HttpStatusCode |
None. |
|
ReasonPhrase | string |
None. |
|
Headers | Collection of Object |
None. |
|
RequestMessage | HttpRequestMessage |
None. |
|
IsSuccessStatusCode | boolean |
None. |