POST Booking/AddShippingAppointment

Adds a ShippingAppointment to the order

Request Information

URI Parameters

None.

Body Parameters

ShippingAppointmentBinding
NameDescriptionTypeAdditional 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": "d4fc055e-7ac0-4af1-a25e-81f92e329b44",
  "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">d4fc055e-7ac0-4af1-a25e-81f92e329b44</Token>
  <OrderShippingID>2</OrderShippingID>
  <SlotID>1</SlotID>
</ShippingAppointmentBinding>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.