GET api/DelayedOrder?skip={skip}&take={take}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| skip | integer |
Required |
|
| take | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DelayedOrderDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Alert | integer |
None. |
|
| OrderDate | date |
None. |
|
| OrderId | string |
None. |
|
| ProductId | string |
None. |
|
| Provider | string |
None. |
|
| SpecificOrderId | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Alert": 1,
"OrderDate": "2026-08-06T08:37:23.7669095+02:00",
"OrderId": "sample string 3",
"ProductId": "sample string 4",
"Provider": "sample string 5",
"SpecificOrderId": "sample string 6"
},
{
"Alert": 1,
"OrderDate": "2026-08-06T08:37:23.7669095+02:00",
"OrderId": "sample string 3",
"ProductId": "sample string 4",
"Provider": "sample string 5",
"SpecificOrderId": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfDelayedOrderDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParaninfoTrackingsDT.Model">
<DelayedOrderDTO>
<Alert>1</Alert>
<OrderDate>2026-08-06T08:37:23.7669095+02:00</OrderDate>
<OrderId>sample string 3</OrderId>
<ProductId>sample string 4</ProductId>
<Provider>sample string 5</Provider>
<SpecificOrderId>sample string 6</SpecificOrderId>
</DelayedOrderDTO>
<DelayedOrderDTO>
<Alert>1</Alert>
<OrderDate>2026-08-06T08:37:23.7669095+02:00</OrderDate>
<OrderId>sample string 3</OrderId>
<ProductId>sample string 4</ProductId>
<Provider>sample string 5</Provider>
<SpecificOrderId>sample string 6</SpecificOrderId>
</DelayedOrderDTO>
</ArrayOfDelayedOrderDTO>