GET api/CaseCartBarcode/GetTransportCart?barcode={barcode}&caseCartStorageId={caseCartStorageId}&token={token}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
barcode

string

Required

caseCartStorageId

integer

Required

token

string

Required

Body Parameters

None.

Response Information

Resource Description

MDLCaseCartTransportCartBarcode
NameDescriptionTypeAdditional information
ID

integer

None.

Name

string

None.

Number

string

None.

Barcode

string

None.

LastCleaningDate

date

None.

NextCleaningDate

date

None.

CurrentylInCleaningOrder

boolean

None.

ValidBarcode

boolean

None.

NeedsCleaning

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Name": "sample string 2",
  "Number": "sample string 3",
  "Barcode": "sample string 4",
  "LastCleaningDate": "2025-12-31T16:33:44.3280921+01:00",
  "NextCleaningDate": "2025-12-31T16:33:44.3280921+01:00",
  "CurrentylInCleaningOrder": true,
  "ValidBarcode": true,
  "NeedsCleaning": true
}

application/xml, text/xml

Sample:
<MDLCaseCartTransportCartBarcode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Asanus.BarCon.Middleware.Shared">
  <Barcode>sample string 4</Barcode>
  <CurrentylInCleaningOrder>true</CurrentylInCleaningOrder>
  <ID>1</ID>
  <LastCleaningDate>2025-12-31T16:33:44.3280921+01:00</LastCleaningDate>
  <Name>sample string 2</Name>
  <NeedsCleaning>true</NeedsCleaning>
  <NextCleaningDate>2025-12-31T16:33:44.3280921+01:00</NextCleaningDate>
  <Number>sample string 3</Number>
  <ValidBarcode>true</ValidBarcode>
</MDLCaseCartTransportCartBarcode>