POST api/PrepareMixedHeader/GetOutDeliveryNote
Request Information
URI Parameters
None.
Body Parameters
PrepareMixedHeader_GetOutDeliveryNoteRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| DeviceUniqueId | string |
None. |
|
| IdTransportHeader | integer |
None. |
|
| IdHeaderCustomer | integer |
None. |
|
| IdUnloadingPoint | integer |
None. |
|
| OutDeliveryNoteCode | string |
None. |
|
| IdOperator | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"DeviceUniqueId": "sample string 1",
"IdTransportHeader": 1,
"IdHeaderCustomer": 1,
"IdUnloadingPoint": 1,
"OutDeliveryNoteCode": "sample string 2",
"IdOperator": 3
}
application/xml, text/xml
Sample:
<PrepareMixedHeader_GetOutDeliveryNoteRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PharmatoolsWarehouseAPI.Models"> <DeviceUniqueId>sample string 1</DeviceUniqueId> <IdHeaderCustomer>1</IdHeaderCustomer> <IdOperator>3</IdOperator> <IdTransportHeader>1</IdTransportHeader> <IdUnloadingPoint>1</IdUnloadingPoint> <OutDeliveryNoteCode>sample string 2</OutDeliveryNoteCode> </PrepareMixedHeader_GetOutDeliveryNoteRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PrepareMixedHeader_GetOutDeliveryNoteResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | PrepareMixedHeader_GetOutDeliveryNoteResult |
None. |
|
| IdUnloadingPoint | integer |
None. |
|
| OutDeliveryNote | OutDeliveryNote |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": 0,
"IdUnloadingPoint": 1,
"OutDeliveryNote": {
"IdDeliveryNote": 1,
"Transit": true,
"DeliveryNoteType": "sample string 3",
"DeliveryNoteNumber": "sample string 4",
"DeliveryNoteDate": "2025-12-09T02:22:06.9077806+01:00",
"DeliveryNoteCode": "sample string 6",
"Status": 0,
"IdOperativeUnit": 7,
"OUCode": "sample string 8",
"OUDescription": "sample string 9",
"IdCustomer": 10,
"Customer": "sample string 11",
"IdPickingList": 1,
"PickingListType": "sample string 12",
"PickingListNumber": "sample string 13",
"PickingListDate": "2025-12-09T02:22:06.9077806+01:00",
"PickingListStatus": 0,
"PickingListUrgency": 0
}
}
application/xml, text/xml
Sample:
<PrepareMixedHeader_GetOutDeliveryNoteResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PharmatoolsWarehouseAPI.Models">
<IdUnloadingPoint>1</IdUnloadingPoint>
<OutDeliveryNote>
<Customer>sample string 11</Customer>
<DeliveryNoteCode>sample string 6</DeliveryNoteCode>
<DeliveryNoteDate>2025-12-09T02:22:06.9077806+01:00</DeliveryNoteDate>
<DeliveryNoteNumber>sample string 4</DeliveryNoteNumber>
<DeliveryNoteType>sample string 3</DeliveryNoteType>
<IdCustomer>10</IdCustomer>
<IdDeliveryNote>1</IdDeliveryNote>
<IdOperativeUnit>7</IdOperativeUnit>
<IdPickingList>1</IdPickingList>
<OUCode>sample string 8</OUCode>
<OUDescription>sample string 9</OUDescription>
<PickingListDate>2025-12-09T02:22:06.9077806+01:00</PickingListDate>
<PickingListNumber>sample string 13</PickingListNumber>
<PickingListStatus>newPickingList</PickingListStatus>
<PickingListType>sample string 12</PickingListType>
<PickingListUrgency>normal</PickingListUrgency>
<Status>newDeliveryNote</Status>
<Transit>true</Transit>
</OutDeliveryNote>
<Result>GenericError</Result>
</PrepareMixedHeader_GetOutDeliveryNoteResponse>