POST Booking/ShippingAppointment

ShippingAppointments where a ShippingAppointment

Request Information

URI Parameters

None.

Body Parameters

GetShippingAppointmentRequest
NameDescriptionTypeAdditional information
ID

integer

None.

Lang

string

None.

StoreID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Lang": "sample string 2",
  "StoreID": 3
}

application/xml, text/xml

Sample:
<GetShippingAppointmentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Booking">
  <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 2</Lang>
  <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">3</StoreID>
  <ID>1</ID>
</GetShippingAppointmentRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ShippingAppointment
NameDescriptionTypeAdditional information
ID

integer

None.

Created

date

None.

Modified

date

None.

OrderShippingID

integer

None.

SlotID

integer

None.

SortOrder

Relative to other appointments of the same slot

integer

None.

Expiration

date

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Created": "2025-12-06T05:41:58.8542981+01:00",
  "Modified": "2025-12-06T05:41:58.8542981+01:00",
  "OrderShippingID": 4,
  "SlotID": 5,
  "SortOrder": 6,
  "Expiration": "2025-12-06T05:41:58.8542981+01:00"
}

application/xml, text/xml

Sample:
<ShippingAppointment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Booking">
  <Created>2025-12-06T05:41:58.8542981+01:00</Created>
  <Expiration>2025-12-06T05:41:58.8542981+01:00</Expiration>
  <ID>1</ID>
  <Modified>2025-12-06T05:41:58.8542981+01:00</Modified>
  <OrderShippingID>4</OrderShippingID>
  <SlotID>5</SlotID>
  <SortOrder>6</SortOrder>
</ShippingAppointment>