GET api/Warehouse/Allocations

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of AllocationData
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

CustomerId

globally unique identifier

None.

WarehouseId

globally unique identifier

None.

TerritoryId

globally unique identifier

None.

ProductId

globally unique identifier

None.

AllocatedQty

decimal number

Required

Identifier

string

None.

Updated

date

None.

SoldQty

decimal number

None.

StartDate

date

None.

EndDate

date

None.

IsDeleted

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "0006e095-e3d9-46f2-b5bb-64360a80fb6a",
    "CustomerId": "fbdaf927-3359-468a-baed-515a81573d32",
    "WarehouseId": "66cc4650-9439-4b6f-bd84-9b14f5670399",
    "TerritoryId": "cbcf51db-d332-485b-afef-f997674d4c97",
    "ProductId": "44184afd-23ed-4cd2-a396-7e05eaca55e4",
    "AllocatedQty": 2.0,
    "Identifier": "sample string 3",
    "Updated": "2025-10-26T03:41:08.9793896-04:00",
    "SoldQty": 1.0,
    "StartDate": "2025-10-26T03:41:08.9793896-04:00",
    "EndDate": "2025-10-26T03:41:08.9793896-04:00",
    "IsDeleted": 1
  },
  {
    "Id": "0006e095-e3d9-46f2-b5bb-64360a80fb6a",
    "CustomerId": "fbdaf927-3359-468a-baed-515a81573d32",
    "WarehouseId": "66cc4650-9439-4b6f-bd84-9b14f5670399",
    "TerritoryId": "cbcf51db-d332-485b-afef-f997674d4c97",
    "ProductId": "44184afd-23ed-4cd2-a396-7e05eaca55e4",
    "AllocatedQty": 2.0,
    "Identifier": "sample string 3",
    "Updated": "2025-10-26T03:41:08.9793896-04:00",
    "SoldQty": 1.0,
    "StartDate": "2025-10-26T03:41:08.9793896-04:00",
    "EndDate": "2025-10-26T03:41:08.9793896-04:00",
    "IsDeleted": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfAllocationData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models">
  <AllocationData>
    <AllocatedQty>2</AllocatedQty>
    <CustomerId>fbdaf927-3359-468a-baed-515a81573d32</CustomerId>
    <EndDate>2025-10-26T03:41:08.9793896-04:00</EndDate>
    <Id>0006e095-e3d9-46f2-b5bb-64360a80fb6a</Id>
    <Identifier>sample string 3</Identifier>
    <IsDeleted>1</IsDeleted>
    <ProductId>44184afd-23ed-4cd2-a396-7e05eaca55e4</ProductId>
    <SoldQty>1</SoldQty>
    <StartDate>2025-10-26T03:41:08.9793896-04:00</StartDate>
    <TerritoryId>cbcf51db-d332-485b-afef-f997674d4c97</TerritoryId>
    <Updated>2025-10-26T03:41:08.9793896-04:00</Updated>
    <WarehouseId>66cc4650-9439-4b6f-bd84-9b14f5670399</WarehouseId>
  </AllocationData>
  <AllocationData>
    <AllocatedQty>2</AllocatedQty>
    <CustomerId>fbdaf927-3359-468a-baed-515a81573d32</CustomerId>
    <EndDate>2025-10-26T03:41:08.9793896-04:00</EndDate>
    <Id>0006e095-e3d9-46f2-b5bb-64360a80fb6a</Id>
    <Identifier>sample string 3</Identifier>
    <IsDeleted>1</IsDeleted>
    <ProductId>44184afd-23ed-4cd2-a396-7e05eaca55e4</ProductId>
    <SoldQty>1</SoldQty>
    <StartDate>2025-10-26T03:41:08.9793896-04:00</StartDate>
    <TerritoryId>cbcf51db-d332-485b-afef-f997674d4c97</TerritoryId>
    <Updated>2025-10-26T03:41:08.9793896-04:00</Updated>
    <WarehouseId>66cc4650-9439-4b6f-bd84-9b14f5670399</WarehouseId>
  </AllocationData>
</ArrayOfAllocationData>