POST api/DeliveryPackage/AllDeliverySignatureAnomalies

Request Information

URI Parameters

None.

Body Parameters

DeliveryPackage_AllDeliverySignatureAnomaliesRequest
NameDescriptionTypeAdditional information
DeviceUniqueId

string

None.

IdOperator

integer

None.

Request Formats

application/json, text/json

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

application/xml, text/xml

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

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DeliveryPackage_AllDeliverySignatureAnomaliesResponse
NameDescriptionTypeAdditional information
Anomalies

Collection of DeliveryPackage_DeliverySignatureAnomaly

None.

Result

DeliveryPackage_AllDeliverySignatureAnomaliesResult

None.

Response Formats

application/json, text/json

Sample:
{
  "Anomalies": [
    {
      "IdDeliverySignatureAnomaly": 1,
      "Description": "sample string 2"
    },
    {
      "IdDeliverySignatureAnomaly": 1,
      "Description": "sample string 2"
    }
  ],
  "Result": 0
}

application/xml, text/xml

Sample:
<DeliveryPackage_AllDeliverySignatureAnomaliesResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PharmatoolsWarehouseAPI.Models">
  <Anomalies>
    <DeliveryPackage_DeliverySignatureAnomaly>
      <Description>sample string 2</Description>
      <IdDeliverySignatureAnomaly>1</IdDeliverySignatureAnomaly>
    </DeliveryPackage_DeliverySignatureAnomaly>
    <DeliveryPackage_DeliverySignatureAnomaly>
      <Description>sample string 2</Description>
      <IdDeliverySignatureAnomaly>1</IdDeliverySignatureAnomaly>
    </DeliveryPackage_DeliverySignatureAnomaly>
  </Anomalies>
  <Result>GenericError</Result>
</DeliveryPackage_AllDeliverySignatureAnomaliesResponse>