List Collection Locations

Service Url: POST /baskets/{ref}/orders/collectionLocations

Response body

IListCollectionLocationsResponse

collectionLocationSummaries – List<ICollectionLocationSummary> – the list of collection location summaries.

Entities

ICollectionLocationSummary

locationId – String – the id of the location for the collection location

description – String- the description of the collection location

Remarks

Returns a list of summaries of all the possible collection locations available.

Example Request

1http://localhost:8080/WebRestApi/rest/baskets/PRIMARY/orders/collectionLocations

Example Response

{
  "collectionLocationSummaries": [
    {
      "locationId": "0001",
      "description": "Enactor Store"
    },
    {
      "locationId": "0003",
      "description": "Enactor (Demo Room)"
    }
  ]
}
Go to Top