POST api/Picking/GetIfAssignedToOperator

Request Information

URI Parameters

None.

Body Parameters

Picking_GetIfAssignedToOperatorRequest
NameDescriptionTypeAdditional information
DeviceUniqueId

string

None.

IdWarehouse

integer

None.

IdOperator

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "DeviceUniqueId": "sample string 1",
  "IdWarehouse": 2,
  "IdOperator": 3
}

application/xml, text/xml

Sample:
<Picking_GetIfAssignedToOperatorRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PharmatoolsWarehouseAPI.Models">
  <DeviceUniqueId>sample string 1</DeviceUniqueId>
  <IdOperator>3</IdOperator>
  <IdWarehouse>2</IdWarehouse>
</Picking_GetIfAssignedToOperatorRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Picking_GetIfAssignedToOperatorResponse
NameDescriptionTypeAdditional information
Result

Picking_GetIfAssignedToOperatorResult

None.

NewPL

boolean

None.

ContinuePL

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": 0,
  "NewPL": true,
  "ContinuePL": true
}

application/xml, text/xml

Sample:
<Picking_GetIfAssignedToOperatorResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PharmatoolsWarehouseAPI.Models">
  <ContinuePL>true</ContinuePL>
  <NewPL>true</NewPL>
  <Result>GenericError</Result>
</Picking_GetIfAssignedToOperatorResponse>