GET api/packinglist/{deliveryDate}

Get a list of all the packing lists for a specific delivery date.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
deliveryDate

The delivery date

date

Required

Body Parameters

None.

Remarks

None.

Example

//Gets all the packing lists with delivery date 2020-09-24
http://localhost/api/packinglist/2020-09-26

Response Information

Resource Description

Collection of PackinglistBase
NameDescriptionTypeAdditional information
Id

The id for the packing list.

globally unique identifier

None.

Number

Number on the packing list.

integer

None.

Name

Name on the packing list.

string

None.

BranchId

The branch creating the packing list.

integer

None.

Transporter

The transporter for this packing list.

string

None.

CreatedDate

The date the packing list was created.

date

None.

ActivatedDate

The date the packing list was activated.

date

None.

CollectDate

The date the packing list was collected.

date

None.

DeliveryDate

The date the packing list was delivered.

date

None.

IsSelection

Indicates if the packing list is a selection or an actual packing list.

boolean

None.

IsInCloud

Indicates if the packing list is in the cloud or not.

boolean

None.

Active

Indicates if the packing list is active or not.

boolean

None.

Packed

Indicates if the packing list is packed or not.

boolean

None.

Loaded

Indicates if the packing list is loaded or not.

boolean

None.

Delivered

Indicates if the packing list is delivered or not.

boolean

None.

Closed

Indicates if the packing list is closed or not.

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "beb27983-8d3b-4914-95c8-88e179a44452",
    "Number": 2,
    "Name": "sample string 3",
    "BranchId": 4,
    "Transporter": "sample string 5",
    "CreatedDate": "12/21/2025 1:04:07 PM",
    "ActivatedDate": "12/21/2025 1:04:07 PM",
    "CollectDate": "12/21/2025 1:04:07 PM",
    "DeliveryDate": "12/21/2025 1:04:07 PM",
    "IsSelection": true,
    "IsInCloud": true,
    "Active": true,
    "Packed": true,
    "Loaded": true,
    "Delivered": true,
    "Closed": true
  },
  {
    "Id": "beb27983-8d3b-4914-95c8-88e179a44452",
    "Number": 2,
    "Name": "sample string 3",
    "BranchId": 4,
    "Transporter": "sample string 5",
    "CreatedDate": "12/21/2025 1:04:07 PM",
    "ActivatedDate": "12/21/2025 1:04:07 PM",
    "CollectDate": "12/21/2025 1:04:07 PM",
    "DeliveryDate": "12/21/2025 1:04:07 PM",
    "IsSelection": true,
    "IsInCloud": true,
    "Active": true,
    "Packed": true,
    "Loaded": true,
    "Delivered": true,
    "Closed": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfPackinglistBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.TyreHotel">
  <PackinglistBase>
    <ActivatedDate>2025-12-21T13:04:07.7952836+00:00</ActivatedDate>
    <Active>true</Active>
    <BranchId>4</BranchId>
    <Closed>true</Closed>
    <CollectDate>2025-12-21T13:04:07.7952836+00:00</CollectDate>
    <CreatedDate>2025-12-21T13:04:07.7952836+00:00</CreatedDate>
    <Delivered>true</Delivered>
    <DeliveryDate>2025-12-21T13:04:07.7952836+00:00</DeliveryDate>
    <Id>beb27983-8d3b-4914-95c8-88e179a44452</Id>
    <IsInCloud>true</IsInCloud>
    <IsSelection>true</IsSelection>
    <Loaded>true</Loaded>
    <Name>sample string 3</Name>
    <Number>2</Number>
    <Packed>true</Packed>
    <Transporter>sample string 5</Transporter>
  </PackinglistBase>
  <PackinglistBase>
    <ActivatedDate>2025-12-21T13:04:07.7952836+00:00</ActivatedDate>
    <Active>true</Active>
    <BranchId>4</BranchId>
    <Closed>true</Closed>
    <CollectDate>2025-12-21T13:04:07.7952836+00:00</CollectDate>
    <CreatedDate>2025-12-21T13:04:07.7952836+00:00</CreatedDate>
    <Delivered>true</Delivered>
    <DeliveryDate>2025-12-21T13:04:07.7952836+00:00</DeliveryDate>
    <Id>beb27983-8d3b-4914-95c8-88e179a44452</Id>
    <IsInCloud>true</IsInCloud>
    <IsSelection>true</IsSelection>
    <Loaded>true</Loaded>
    <Name>sample string 3</Name>
    <Number>2</Number>
    <Packed>true</Packed>
    <Transporter>sample string 5</Transporter>
  </PackinglistBase>
</ArrayOfPackinglistBase>