GET api/Order/limit/{limit}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| limit | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of OrderDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderId | string |
None. |
|
| TrackingNumber | string |
None. |
|
| SellerChannel | string |
None. |
|
| CarrierName | string |
None. |
|
| OrderDate | date |
None. |
|
| IsValid | boolean |
None. |
|
| WasProcessed | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"OrderId": "sample string 1",
"TrackingNumber": "sample string 2",
"SellerChannel": "sample string 3",
"CarrierName": "sample string 4",
"OrderDate": "2026-08-06T08:41:31.1238668+02:00",
"IsValid": true,
"WasProcessed": true
},
{
"OrderId": "sample string 1",
"TrackingNumber": "sample string 2",
"SellerChannel": "sample string 3",
"CarrierName": "sample string 4",
"OrderDate": "2026-08-06T08:41:31.1238668+02:00",
"IsValid": true,
"WasProcessed": true
}
]
application/xml, text/xml
Sample:
<ArrayOfOrderDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParaninfoTrackingsDT.Model">
<OrderDTO>
<CarrierName>sample string 4</CarrierName>
<IsValid>true</IsValid>
<OrderDate>2026-08-06T08:41:31.1238668+02:00</OrderDate>
<OrderId>sample string 1</OrderId>
<SellerChannel>sample string 3</SellerChannel>
<TrackingNumber>sample string 2</TrackingNumber>
<WasProcessed>true</WasProcessed>
</OrderDTO>
<OrderDTO>
<CarrierName>sample string 4</CarrierName>
<IsValid>true</IsValid>
<OrderDate>2026-08-06T08:41:31.1238668+02:00</OrderDate>
<OrderId>sample string 1</OrderId>
<SellerChannel>sample string 3</SellerChannel>
<TrackingNumber>sample string 2</TrackingNumber>
<WasProcessed>true</WasProcessed>
</OrderDTO>
</ArrayOfOrderDTO>