GET api/Warehouse/Allocations/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AllocationData| Name | Description | Type | Additional 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": "53fc27d2-3d3d-4575-8c9d-6ccf874b6539",
"CustomerId": "94cbfcc9-25c8-4db0-b4a4-77e6b03029c6",
"WarehouseId": "b42ca4b8-530c-4dcf-a6ce-b916dbe3a1c0",
"TerritoryId": "674abc94-d7b4-4687-af62-526bdcb34aad",
"ProductId": "48df749d-3387-4e9d-a214-b578a436764c",
"AllocatedQty": 2.0,
"Identifier": "sample string 3",
"Updated": "2025-12-15T23:43:53.9670081-05:00",
"SoldQty": 1.0,
"StartDate": "2025-12-15T23:43:53.9670081-05:00",
"EndDate": "2025-12-15T23:43:53.9670081-05:00",
"IsDeleted": 1
},
{
"Id": "53fc27d2-3d3d-4575-8c9d-6ccf874b6539",
"CustomerId": "94cbfcc9-25c8-4db0-b4a4-77e6b03029c6",
"WarehouseId": "b42ca4b8-530c-4dcf-a6ce-b916dbe3a1c0",
"TerritoryId": "674abc94-d7b4-4687-af62-526bdcb34aad",
"ProductId": "48df749d-3387-4e9d-a214-b578a436764c",
"AllocatedQty": 2.0,
"Identifier": "sample string 3",
"Updated": "2025-12-15T23:43:53.9670081-05:00",
"SoldQty": 1.0,
"StartDate": "2025-12-15T23:43:53.9670081-05:00",
"EndDate": "2025-12-15T23:43:53.9670081-05: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>94cbfcc9-25c8-4db0-b4a4-77e6b03029c6</CustomerId>
<EndDate>2025-12-15T23:43:53.9670081-05:00</EndDate>
<Id>53fc27d2-3d3d-4575-8c9d-6ccf874b6539</Id>
<Identifier>sample string 3</Identifier>
<IsDeleted>1</IsDeleted>
<ProductId>48df749d-3387-4e9d-a214-b578a436764c</ProductId>
<SoldQty>1</SoldQty>
<StartDate>2025-12-15T23:43:53.9670081-05:00</StartDate>
<TerritoryId>674abc94-d7b4-4687-af62-526bdcb34aad</TerritoryId>
<Updated>2025-12-15T23:43:53.9670081-05:00</Updated>
<WarehouseId>b42ca4b8-530c-4dcf-a6ce-b916dbe3a1c0</WarehouseId>
</AllocationData>
<AllocationData>
<AllocatedQty>2</AllocatedQty>
<CustomerId>94cbfcc9-25c8-4db0-b4a4-77e6b03029c6</CustomerId>
<EndDate>2025-12-15T23:43:53.9670081-05:00</EndDate>
<Id>53fc27d2-3d3d-4575-8c9d-6ccf874b6539</Id>
<Identifier>sample string 3</Identifier>
<IsDeleted>1</IsDeleted>
<ProductId>48df749d-3387-4e9d-a214-b578a436764c</ProductId>
<SoldQty>1</SoldQty>
<StartDate>2025-12-15T23:43:53.9670081-05:00</StartDate>
<TerritoryId>674abc94-d7b4-4687-af62-526bdcb34aad</TerritoryId>
<Updated>2025-12-15T23:43:53.9670081-05:00</Updated>
<WarehouseId>b42ca4b8-530c-4dcf-a6ce-b916dbe3a1c0</WarehouseId>
</AllocationData>
</ArrayOfAllocationData>