POST Booking/ShippingSlot

ShippingSlots where a ShippingSlot

Request Information

URI Parameters

None.

Body Parameters

GetShippingSlotRequest
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:
<GetShippingSlotRequest 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>
</GetShippingSlotRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ShippingSlot
NameDescriptionTypeAdditional information
ID

integer

None.

Created

date

None.

Modified

date

None.

WarehouseID

integer

None.

Start

date

None.

End

date

None.

CustomerPickup

If false, delivery service

boolean

None.

Capacity

= BookingConfiguration.Capacity in the moment of creation

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Created": "2025-12-06T09:15:04.279691+01:00",
  "Modified": "2025-12-06T09:15:04.279691+01:00",
  "WarehouseID": 4,
  "Start": "2025-12-06T09:15:04.279691+01:00",
  "End": "2025-12-06T09:15:04.279691+01:00",
  "CustomerPickup": true,
  "Capacity": 8
}

application/xml, text/xml

Sample:
<ShippingSlot xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Booking">
  <Capacity>8</Capacity>
  <Created>2025-12-06T09:15:04.279691+01:00</Created>
  <CustomerPickup>true</CustomerPickup>
  <End>2025-12-06T09:15:04.279691+01:00</End>
  <ID>1</ID>
  <Modified>2025-12-06T09:15:04.279691+01:00</Modified>
  <Start>2025-12-06T09:15:04.279691+01:00</Start>
  <WarehouseID>4</WarehouseID>
</ShippingSlot>