POST Booking/ShippingSlots
Get all the Slots for a period range
Request Information
URI Parameters
None.
Body Parameters
SlotsRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderShippingID | integer |
None. |
|
| Start | date |
None. |
|
| End | date |
None. |
|
| OrderID | integer |
None. |
|
| Token | globally unique identifier |
None. |
|
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrderShippingID": 1,
"Start": "2025-10-31T21:12:57.150875+01:00",
"End": "2025-10-31T21:12:57.150875+01:00",
"OrderID": 4,
"Token": "9cfea786-c1e4-4bc8-90ed-6da652243b0c",
"Lang": "sample string 6",
"StoreID": 7
}
application/xml, text/xml
Sample:
<SlotsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Web.Models.View.Booking"> <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Web.Models.Common.Base">sample string 6</Lang> <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Web.Models.Common.Base">7</StoreID> <OrderID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Web.Models.Common.Order">4</OrderID> <Token xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Web.Models.Common.Order">9cfea786-c1e4-4bc8-90ed-6da652243b0c</Token> <End>2025-10-31T21:12:57.150875+01:00</End> <OrderShippingID>1</OrderShippingID> <Start>2025-10-31T21:12:57.150875+01:00</Start> </SlotsRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of Slot| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Start | date |
None. |
|
| End | date |
None. |
|
| Capacity | integer |
None. |
|
| Count | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Start": "2025-10-31T21:12:57.150875+01:00",
"End": "2025-10-31T21:12:57.150875+01:00",
"Capacity": 4,
"Count": 5
},
{
"ID": 1,
"Start": "2025-10-31T21:12:57.150875+01:00",
"End": "2025-10-31T21:12:57.150875+01:00",
"Capacity": 4,
"Count": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfSlot xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Web.Models.View.Booking">
<Slot>
<Capacity>4</Capacity>
<Count>5</Count>
<End>2025-10-31T21:12:57.150875+01:00</End>
<ID>1</ID>
<Start>2025-10-31T21:12:57.150875+01:00</Start>
</Slot>
<Slot>
<Capacity>4</Capacity>
<Count>5</Count>
<End>2025-10-31T21:12:57.150875+01:00</End>
<ID>1</ID>
<Start>2025-10-31T21:12:57.150875+01:00</Start>
</Slot>
</ArrayOfSlot>