POST api/ComplianceControl/DeliveryNote_TransitGetOU
Request Information
URI Parameters
None.
Body Parameters
CC_DeliveryNote_TransitGetOURequest| Name | Description | Type | Additional information |
|---|---|---|---|
| DeviceUniqueId | string |
None. |
|
| IdDeliveryNote | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"DeviceUniqueId": "sample string 1",
"IdDeliveryNote": 2
}
application/xml, text/xml
Sample:
<CC_DeliveryNote_TransitGetOURequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PharmatoolsWarehouseAPI.Models"> <DeviceUniqueId>sample string 1</DeviceUniqueId> <IdDeliveryNote>2</IdDeliveryNote> </CC_DeliveryNote_TransitGetOURequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CC_DeliveryNote_TransitGetOUResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | CC_DeliveryNote_TransitGetOUResult |
None. |
|
| TransitDeliveryNotes | Collection of TransitCompliantCheckComplete |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": 0,
"TransitDeliveryNotes": [
{
"IdOutDeliveryNoteTransit": 1,
"OperativeUnit": {
"IdOperativeUnit": 1,
"IdOperativeUnitType": 2,
"Code": "sample string 3",
"Description": "sample string 4"
},
"LabelQuantity": 1,
"Note": "sample string 2"
},
{
"IdOutDeliveryNoteTransit": 1,
"OperativeUnit": {
"IdOperativeUnit": 1,
"IdOperativeUnitType": 2,
"Code": "sample string 3",
"Description": "sample string 4"
},
"LabelQuantity": 1,
"Note": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<CC_DeliveryNote_TransitGetOUResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PharmatoolsWarehouseAPI.Models">
<Result>GenericError</Result>
<TransitDeliveryNotes>
<TransitCompliantCheckComplete>
<IdOutDeliveryNoteTransit>1</IdOutDeliveryNoteTransit>
<LabelQuantity>1</LabelQuantity>
<Note>sample string 2</Note>
<OperativeUnit>
<Code>sample string 3</Code>
<Description>sample string 4</Description>
<IdOperativeUnit>1</IdOperativeUnit>
<IdOperativeUnitType>2</IdOperativeUnitType>
</OperativeUnit>
</TransitCompliantCheckComplete>
<TransitCompliantCheckComplete>
<IdOutDeliveryNoteTransit>1</IdOutDeliveryNoteTransit>
<LabelQuantity>1</LabelQuantity>
<Note>sample string 2</Note>
<OperativeUnit>
<Code>sample string 3</Code>
<Description>sample string 4</Description>
<IdOperativeUnit>1</IdOperativeUnit>
<IdOperativeUnitType>2</IdOperativeUnitType>
</OperativeUnit>
</TransitCompliantCheckComplete>
</TransitDeliveryNotes>
</CC_DeliveryNote_TransitGetOUResponse>