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": "02fd7d85-b4a7-4425-8978-3413492d9660",
"Name": "sample string 1",
"TenantId": "ad538829-d458-4df2-86d5-1b2cd6b1f863",
"UserId": "97b037bb-23ce-4838-80eb-89d02cd5a05d",
"Temporary": true,
"Completed": true,
"Dispatched": true,
"Status": "sample string 2",
"ExternalProductionId": "sample string 3",
"SearchQuery": "sample string 4",
"CreationDateStartUtc": "2026-01-21T09:42:00.3865865+00:00",
"CreationDateEndUtc": "2026-01-21T09:42:00.3865865+00:00",
"ModifiedDateStartUtc": "2026-01-21T09:42:00.3865865+00:00",
"ModifiedDateEndUtc": "2026-01-21T09:42:00.3865865+00:00",
"PaymentDateStartUtc": "2026-01-21T09:42:00.3865865+00:00",
"PaymentDateEndUtc": "2026-01-21T09:42:00.3865865+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-01-21T09:42:00.3865865+00:00</CreationDateEndUtc> <CreationDateStartUtc>2026-01-21T09:42:00.3865865+00:00</CreationDateStartUtc> <Dispatched>true</Dispatched> <ExternalProductionId>sample string 3</ExternalProductionId> <Id>02fd7d85-b4a7-4425-8978-3413492d9660</Id> <ModifiedDateEndUtc>2026-01-21T09:42:00.3865865+00:00</ModifiedDateEndUtc> <ModifiedDateStartUtc>2026-01-21T09:42:00.3865865+00:00</ModifiedDateStartUtc> <Name>sample string 1</Name> <PaymentDateEndUtc>2026-01-21T09:42:00.3865865+00:00</PaymentDateEndUtc> <PaymentDateStartUtc>2026-01-21T09:42:00.3865865+00:00</PaymentDateStartUtc> <SearchQuery>sample string 4</SearchQuery> <Status>sample string 2</Status> <Temporary>true</Temporary> <TenantId>ad538829-d458-4df2-86d5-1b2cd6b1f863</TenantId> <UserId>97b037bb-23ce-4838-80eb-89d02cd5a05d</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.