GET api/InventoryModels/{id}

Fetch a specific model

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

InventoryModel
NameDescriptionTypeAdditional information
ManufacturerId

integer

None.

Cashflow

string

None.

CompanyId

integer

None.

Name

string

None.

LastModified

date

None.

Created

date

None.

Id

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ManufacturerId": 1,
  "Cashflow": "sample string 2",
  "CompanyId": 3,
  "Name": "sample string 4",
  "LastModified": "2025-12-08T14:19:01.4512186+00:00",
  "Created": "2025-12-08T14:19:01.4512186+00:00",
  "Id": 7
}

application/xml, text/xml

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