POST Booking/ShippingSlots

ShippingSlots where a ShippingSlot

Request Information

URI Parameters

None.

Body Parameters

BaseRequest
NameDescriptionTypeAdditional information
Lang

string

None.

StoreID

integer

None.

Request Formats

application/json, text/json

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

application/xml, text/xml

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

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of 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-06T05:40:31.7915547+01:00",
    "Modified": "2025-12-06T05:40:31.7915547+01:00",
    "WarehouseID": 4,
    "Start": "2025-12-06T05:40:31.7915547+01:00",
    "End": "2025-12-06T05:40:31.7915547+01:00",
    "CustomerPickup": true,
    "Capacity": 8
  },
  {
    "ID": 1,
    "Created": "2025-12-06T05:40:31.7915547+01:00",
    "Modified": "2025-12-06T05:40:31.7915547+01:00",
    "WarehouseID": 4,
    "Start": "2025-12-06T05:40:31.7915547+01:00",
    "End": "2025-12-06T05:40:31.7915547+01:00",
    "CustomerPickup": true,
    "Capacity": 8
  }
]

application/xml, text/xml

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