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