POST Booking/AddShippingAppointment
Adds a ShippingAppointment to the order
Request Information
URI Parameters
None.
Body Parameters
ShippingAppointmentBinding| Name | Description | Type | Additional information |
|---|---|---|---|
| SlotID | integer |
None. |
|
| OrderShippingID | integer |
None. |
|
| OrderID | integer |
None. |
|
| Token | globally unique identifier |
None. |
|
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"SlotID": 1,
"OrderShippingID": 2,
"OrderID": 3,
"Token": "30cc19b2-9f96-411e-abd4-4b97a7921c6e",
"Lang": "sample string 5",
"StoreID": 6
}
application/xml, text/xml
Sample:
<ShippingAppointmentBinding xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Web.Models.Binding.Booking"> <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Web.Models.Common.Base">sample string 5</Lang> <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Web.Models.Common.Base">6</StoreID> <OrderID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Web.Models.Common.Order">3</OrderID> <Token xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Web.Models.Common.Order">30cc19b2-9f96-411e-abd4-4b97a7921c6e</Token> <OrderShippingID>2</OrderShippingID> <SlotID>1</SlotID> </ShippingAppointmentBinding>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.