GET InventorySnapshot/GetInventorySnapshot_AllProductsInClassification?VendorID={VendorID}&ClassificationName={ClassificationName}&UseSP={UseSP}
Run Inventory Snapshot.
Request Information
URI Parameters
| Name | Description | Type | Additional Information |
|---|---|---|---|
| VendorID |
Vendor ID to use when getting data for the inventory snapshot. |
string |
Required |
| ClassificationName |
Classification Name to use when getting data for the inventory snapshot. |
string |
Required |
| UseSP | boolean |
Default value is False |
Body Parameters
Response Information
Resource Description
Run Inventory Snapshot.
AgvInventorySnapshot| Name | Description | Type | Additional Information |
|---|---|---|---|
| Status |
Status of the API call. |
string | |
| Message |
Message of the API call. |
string | |
| Count |
Count of how many Snapshot JSON dictionaries. |
string | |
| SnapshotDetails |
JSON dictionary of Snapshot. |
Collection of Snapshot |
Response Formats
application/json, text/json
Sample:
{
"Status": "sample string 1",
"Message": "sample string 2",
"Count": "sample string 3",
"SnapshotDetails": [
{
"LocationID": "sample string 1",
"DeptID": "sample string 2",
"ProdID": "sample string 3",
"ProductName": "sample string 4",
"GTIN": "sample string 5",
"EBID": "sample string 6",
"AmountOnHand": 7.1,
"UnitOfMeasure": "sample string 8",
"UndeliveredBookedProduct": 9.1,
"AsOfDate": "sample string 10",
"AsOfDateRange": "sample string 11",
"AverageCost": 12.1,
"LastCost": 13.1,
"ReplacementCost": 14.1,
"Replacement2Cost": 15.1,
"Replacement3Cost": 16.1,
"Replacement4Cost": 17.1,
"EstimatedAverageCost": 18.1
},
{
"LocationID": "sample string 1",
"DeptID": "sample string 2",
"ProdID": "sample string 3",
"ProductName": "sample string 4",
"GTIN": "sample string 5",
"EBID": "sample string 6",
"AmountOnHand": 7.1,
"UnitOfMeasure": "sample string 8",
"UndeliveredBookedProduct": 9.1,
"AsOfDate": "sample string 10",
"AsOfDateRange": "sample string 11",
"AverageCost": 12.1,
"LastCost": 13.1,
"ReplacementCost": 14.1,
"Replacement2Cost": 15.1,
"Replacement3Cost": 16.1,
"Replacement4Cost": 17.1,
"EstimatedAverageCost": 18.1
}
]
}
application/xml, text/xml
Sample:
<AgvInventorySnapshot xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Product">
<Count>sample string 3</Count>
<Message>sample string 2</Message>
<SnapshotDetails>
<Snapshot>
<AmountOnHand>7.1</AmountOnHand>
<AsOfDate>sample string 10</AsOfDate>
<AsOfDateRange>sample string 11</AsOfDateRange>
<AverageCost>12.1</AverageCost>
<DeptID>sample string 2</DeptID>
<EBID>sample string 6</EBID>
<EstimatedAverageCost>18.1</EstimatedAverageCost>
<GTIN>sample string 5</GTIN>
<LastCost>13.1</LastCost>
<LocationID>sample string 1</LocationID>
<ProdID>sample string 3</ProdID>
<ProductName>sample string 4</ProductName>
<Replacement2Cost>15.1</Replacement2Cost>
<Replacement3Cost>16.1</Replacement3Cost>
<Replacement4Cost>17.1</Replacement4Cost>
<ReplacementCost>14.1</ReplacementCost>
<UndeliveredBookedProduct>9.1</UndeliveredBookedProduct>
<UnitOfMeasure>sample string 8</UnitOfMeasure>
</Snapshot>
<Snapshot>
<AmountOnHand>7.1</AmountOnHand>
<AsOfDate>sample string 10</AsOfDate>
<AsOfDateRange>sample string 11</AsOfDateRange>
<AverageCost>12.1</AverageCost>
<DeptID>sample string 2</DeptID>
<EBID>sample string 6</EBID>
<EstimatedAverageCost>18.1</EstimatedAverageCost>
<GTIN>sample string 5</GTIN>
<LastCost>13.1</LastCost>
<LocationID>sample string 1</LocationID>
<ProdID>sample string 3</ProdID>
<ProductName>sample string 4</ProductName>
<Replacement2Cost>15.1</Replacement2Cost>
<Replacement3Cost>16.1</Replacement3Cost>
<Replacement4Cost>17.1</Replacement4Cost>
<ReplacementCost>14.1</ReplacementCost>
<UndeliveredBookedProduct>9.1</UndeliveredBookedProduct>
<UnitOfMeasure>sample string 8</UnitOfMeasure>
</Snapshot>
</SnapshotDetails>
<Status>sample string 1</Status>
</AgvInventorySnapshot>