POST api/orders/selectPaged/{pageNumber}/{pageSize}
Retrieves a paged list of orders that match the given criteria.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageNumber |
The page number to retrieve. |
integer |
Required |
| pageSize |
The number of records per page. |
integer |
Required |
Body Parameters
The criteria model to filter orders by.
PayOrderFilterCriteria| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| Temporary | boolean |
None. |
|
| Completed | boolean |
None. |
|
| Dispatched | boolean |
None. |
|
| Status | string |
None. |
|
| ExternalProductionId | string |
None. |
|
| SearchQuery | string |
None. |
|
| CreationDateStartUtc | date |
None. |
|
| CreationDateEndUtc | date |
None. |
|
| ModifiedDateStartUtc | date |
None. |
|
| ModifiedDateEndUtc | date |
None. |
|
| PaymentDateStartUtc | date |
None. |
|
| PaymentDateEndUtc | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "4a31ef26-5b7e-42ac-9d05-0588fdaa07a4",
"Name": "sample string 1",
"TenantId": "9dfba8e9-2f92-4140-8a03-bc7997325ca9",
"UserId": "bec7d08d-91f0-491c-9767-f2f7a094ab9d",
"Temporary": true,
"Completed": true,
"Dispatched": true,
"Status": "sample string 2",
"ExternalProductionId": "sample string 3",
"SearchQuery": "sample string 4",
"CreationDateStartUtc": "2026-03-16T13:56:27.2999318+00:00",
"CreationDateEndUtc": "2026-03-16T13:56:27.2999318+00:00",
"ModifiedDateStartUtc": "2026-03-16T13:56:27.2999318+00:00",
"ModifiedDateEndUtc": "2026-03-16T13:56:27.2999318+00:00",
"PaymentDateStartUtc": "2026-03-16T13:56:27.2999318+00:00",
"PaymentDateEndUtc": "2026-03-16T13:56:27.2999318+00:00"
}
application/xml, text/xml
Sample:
<PayOrderFilterCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Pay.Models.FilterCriteria"> <Completed>true</Completed> <CreationDateEndUtc>2026-03-16T13:56:27.2999318+00:00</CreationDateEndUtc> <CreationDateStartUtc>2026-03-16T13:56:27.2999318+00:00</CreationDateStartUtc> <Dispatched>true</Dispatched> <ExternalProductionId>sample string 3</ExternalProductionId> <Id>4a31ef26-5b7e-42ac-9d05-0588fdaa07a4</Id> <ModifiedDateEndUtc>2026-03-16T13:56:27.2999318+00:00</ModifiedDateEndUtc> <ModifiedDateStartUtc>2026-03-16T13:56:27.2999318+00:00</ModifiedDateStartUtc> <Name>sample string 1</Name> <PaymentDateEndUtc>2026-03-16T13:56:27.2999318+00:00</PaymentDateEndUtc> <PaymentDateStartUtc>2026-03-16T13:56:27.2999318+00:00</PaymentDateStartUtc> <SearchQuery>sample string 4</SearchQuery> <Status>sample string 2</Status> <Temporary>true</Temporary> <TenantId>9dfba8e9-2f92-4140-8a03-bc7997325ca9</TenantId> <UserId>bec7d08d-91f0-491c-9767-f2f7a094ab9d</UserId> </PayOrderFilterCriteria>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.