GET api/CaseCartConsumableStorage/GetStoragePlaceAndContent?barcode={barcode}&token={token}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
barcode

string

Required

token

string

Required

Body Parameters

None.

Response Information

Resource Description

MDLCaseCartConsumableOnStoragePlace
NameDescriptionTypeAdditional information
Valid

boolean

None.

Message

string

None.

StoragePlace

MDLCaseCartStoragePlace

None.

StoredConsumables

Collection of MDLCaseCartStoredConsumable

None.

Response Formats

application/json, text/json

Sample:
{
  "Valid": true,
  "Message": "sample string 2",
  "StoragePlace": {
    "StorageLayer4Id": 1,
    "StoragePath": "sample string 2",
    "StorageLayer4Name": "sample string 3"
  },
  "StoredConsumables": [
    {
      "StorageLayer4ConsumablesID": 1,
      "ID": 2,
      "Name": "sample string 3",
      "Number": "sample string 4",
      "NumberExternal": "sample string 5",
      "Barcode": "sample string 6",
      "StoredAmount": 7
    },
    {
      "StorageLayer4ConsumablesID": 1,
      "ID": 2,
      "Name": "sample string 3",
      "Number": "sample string 4",
      "NumberExternal": "sample string 5",
      "Barcode": "sample string 6",
      "StoredAmount": 7
    }
  ]
}

application/xml, text/xml

Sample:
<MDLCaseCartConsumableOnStoragePlace xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Asanus.BarCon.Middleware.Shared">
  <Message>sample string 2</Message>
  <StoragePlace>
    <StorageLayer4Id>1</StorageLayer4Id>
    <StorageLayer4Name>sample string 3</StorageLayer4Name>
    <StoragePath>sample string 2</StoragePath>
  </StoragePlace>
  <StoredConsumables>
    <MDLCaseCartStoredConsumable>
      <Barcode>sample string 6</Barcode>
      <ID>2</ID>
      <Name>sample string 3</Name>
      <Number>sample string 4</Number>
      <NumberExternal>sample string 5</NumberExternal>
      <StorageLayer4ConsumablesID>1</StorageLayer4ConsumablesID>
      <StoredAmount>7</StoredAmount>
    </MDLCaseCartStoredConsumable>
    <MDLCaseCartStoredConsumable>
      <Barcode>sample string 6</Barcode>
      <ID>2</ID>
      <Name>sample string 3</Name>
      <Number>sample string 4</Number>
      <NumberExternal>sample string 5</NumberExternal>
      <StorageLayer4ConsumablesID>1</StorageLayer4ConsumablesID>
      <StoredAmount>7</StoredAmount>
    </MDLCaseCartStoredConsumable>
  </StoredConsumables>
  <Valid>true</Valid>
</MDLCaseCartConsumableOnStoragePlace>