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": "2b20b9c8-1402-44e2-bd4d-a183ca50b6ef",
"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">2b20b9c8-1402-44e2-bd4d-a183ca50b6ef</Token> <OrderShippingID>2</OrderShippingID> <SlotID>1</SlotID> </ShippingAppointmentBinding>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.