POST api/CaseCartStoreSet?barcode={barcode}&token={token}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
barcode

string

Required

token

string

Required

Body Parameters

None.

Response Information

Resource Description

MDLCaseCartStoragePlaceValidationResult
NameDescriptionTypeAdditional information
Valid

boolean

None.

Message

string

None.

StoragePlaceId

integer

None.

StoragePlaceName

string

None.

StoragePath

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Valid": true,
  "Message": "sample string 2",
  "StoragePlaceId": 3,
  "StoragePlaceName": "sample string 4",
  "StoragePath": "sample string 5"
}

application/xml, text/xml

Sample:
<MDLCaseCartStoragePlaceValidationResult 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>
  <StoragePath>sample string 5</StoragePath>
  <StoragePlaceId>3</StoragePlaceId>
  <StoragePlaceName>sample string 4</StoragePlaceName>
  <Valid>true</Valid>
</MDLCaseCartStoragePlaceValidationResult>