GET api/Allocations/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
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": "2d89d9db-de61-498a-a23e-40aa1b8449fa",
"CustomerId": "3d1850ca-4819-429e-bf5d-3d0e23fadb2e",
"WarehouseId": "c1b24ac7-77c3-4577-aefd-0aa967652cd4",
"TerritoryId": "542fec22-4531-45da-82b6-c1819e9ea4b5",
"ProductId": "98b01a50-7a13-419f-91ab-eb2f631acf36",
"AllocatedQty": 2.0,
"Identifier": "sample string 3",
"Updated": "2025-12-15T23:41:51.5830908-05:00",
"SoldQty": 1.0,
"StartDate": "2025-12-15T23:41:51.5830908-05:00",
"EndDate": "2025-12-15T23:41:51.5830908-05:00",
"IsDeleted": 1
}
application/xml, text/xml
Sample:
<AllocationData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <AllocatedQty>2</AllocatedQty> <CustomerId>3d1850ca-4819-429e-bf5d-3d0e23fadb2e</CustomerId> <EndDate>2025-12-15T23:41:51.5830908-05:00</EndDate> <Id>2d89d9db-de61-498a-a23e-40aa1b8449fa</Id> <Identifier>sample string 3</Identifier> <IsDeleted>1</IsDeleted> <ProductId>98b01a50-7a13-419f-91ab-eb2f631acf36</ProductId> <SoldQty>1</SoldQty> <StartDate>2025-12-15T23:41:51.5830908-05:00</StartDate> <TerritoryId>542fec22-4531-45da-82b6-c1819e9ea4b5</TerritoryId> <Updated>2025-12-15T23:41:51.5830908-05:00</Updated> <WarehouseId>c1b24ac7-77c3-4577-aefd-0aa967652cd4</WarehouseId> </AllocationData>