GET api/InventoryModels

Fetch a list of all models

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ListResultOfInventoryModel
NameDescriptionTypeAdditional information
TotalCount

integer

None.

Items

Collection of InventoryModel

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalCount": 1,
  "Items": [
    {
      "ManufacturerId": 1,
      "Cashflow": "sample string 2",
      "CompanyId": 3,
      "Name": "sample string 4",
      "LastModified": "2025-12-08T14:25:38.6337267+00:00",
      "Created": "2025-12-08T14:25:38.6337267+00:00",
      "Id": 7
    },
    {
      "ManufacturerId": 1,
      "Cashflow": "sample string 2",
      "CompanyId": 3,
      "Name": "sample string 4",
      "LastModified": "2025-12-08T14:25:38.6337267+00:00",
      "Created": "2025-12-08T14:25:38.6337267+00:00",
      "Id": 7
    }
  ]
}

application/xml, text/xml

Sample:
<ListResultOfInventoryModelHWVxl9UY xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControlKeeper.ApiModel">
  <Items>
    <InventoryModel>
      <Id>7</Id>
      <Created>2025-12-08T14:25:38.6337267+00:00</Created>
      <LastModified>2025-12-08T14:25:38.6337267+00:00</LastModified>
      <Name>sample string 4</Name>
      <CompanyId>3</CompanyId>
      <Cashflow>sample string 2</Cashflow>
      <ManufacturerId>1</ManufacturerId>
    </InventoryModel>
    <InventoryModel>
      <Id>7</Id>
      <Created>2025-12-08T14:25:38.6337267+00:00</Created>
      <LastModified>2025-12-08T14:25:38.6337267+00:00</LastModified>
      <Name>sample string 4</Name>
      <CompanyId>3</CompanyId>
      <Cashflow>sample string 2</Cashflow>
      <ManufacturerId>1</ManufacturerId>
    </InventoryModel>
  </Items>
  <TotalCount>1</TotalCount>
</ListResultOfInventoryModelHWVxl9UY>