PUT Booking/ModifyShippingSlot

Modifies an existing ShippingSlot.

Request Information

URI Parameters

None.

Body Parameters

ShippingSlotBinding
NameDescriptionTypeAdditional information
ID

integer

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.

Lang

string

None.

StoreID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "WarehouseID": 2,
  "Start": "2025-12-06T05:42:39.8218883+01:00",
  "End": "2025-12-06T05:42:39.8218883+01:00",
  "CustomerPickup": true,
  "Capacity": 6,
  "Lang": "sample string 7",
  "StoreID": 8
}

application/xml, text/xml

Sample:
<ShippingSlotBinding xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Binding.Booking">
  <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 7</Lang>
  <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">8</StoreID>
  <Capacity>6</Capacity>
  <CustomerPickup>true</CustomerPickup>
  <End>2025-12-06T05:42:39.8218883+01:00</End>
  <Start>2025-12-06T05:42:39.8218883+01:00</Start>
  <WarehouseID>2</WarehouseID>
  <ID>1</ID>
</ShippingSlotBinding>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>