GET api/IntegrationInventory/V3?locationId={locationId}&inUTC={inUTC}&startDate={startDate}&endDate={endDate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
locationId

integer

Required

inUTC

boolean

Required

startDate

string

Required

endDate

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Inventory_I
NameDescriptionTypeAdditional information
machineName

string

None.

amount

decimal number

None.

dateCreated

date

None.

transactionId

integer

None.

inventoryType

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "machineName": "sample string 1",
    "amount": 2.0,
    "dateCreated": "2025-12-10T11:56:30.6074018+00:00",
    "transactionId": 4,
    "inventoryType": "sample string 5"
  },
  {
    "machineName": "sample string 1",
    "amount": 2.0,
    "dateCreated": "2025-12-10T11:56:30.6074018+00:00",
    "transactionId": 4,
    "inventoryType": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfIntegration.Inventory_I xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models.MIMOCore">
  <Integration.Inventory_I>
    <amount>2</amount>
    <dateCreated>2025-12-10T11:56:30.6074018+00:00</dateCreated>
    <inventoryType>sample string 5</inventoryType>
    <machineName>sample string 1</machineName>
    <transactionId>4</transactionId>
  </Integration.Inventory_I>
  <Integration.Inventory_I>
    <amount>2</amount>
    <dateCreated>2025-12-10T11:56:30.6074018+00:00</dateCreated>
    <inventoryType>sample string 5</inventoryType>
    <machineName>sample string 1</machineName>
    <transactionId>4</transactionId>
  </Integration.Inventory_I>
</ArrayOfIntegration.Inventory_I>