POST api/orders/select

Retrieves a list of orders that match the given criteria.

Request Information

URI Parameters

None.

Body Parameters

The criteria model to filter orders by.

PayOrderFilterCriteria
NameDescriptionTypeAdditional 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": "e2fa763f-8e9a-473c-b6f9-c01a534273cb",
  "Name": "sample string 1",
  "TenantId": "09fc0774-b014-4570-a88d-9a43b3abff3b",
  "UserId": "87e751e0-354d-4ee3-9e17-929054970106",
  "Temporary": true,
  "Completed": true,
  "Dispatched": true,
  "Status": "sample string 2",
  "ExternalProductionId": "sample string 3",
  "SearchQuery": "sample string 4",
  "CreationDateStartUtc": "2025-12-06T02:24:55.0039822+00:00",
  "CreationDateEndUtc": "2025-12-06T02:24:55.0039822+00:00",
  "ModifiedDateStartUtc": "2025-12-06T02:24:55.0039822+00:00",
  "ModifiedDateEndUtc": "2025-12-06T02:24:55.0039822+00:00",
  "PaymentDateStartUtc": "2025-12-06T02:24:55.0039822+00:00",
  "PaymentDateEndUtc": "2025-12-06T02:24:55.0039822+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>2025-12-06T02:24:55.0039822+00:00</CreationDateEndUtc>
  <CreationDateStartUtc>2025-12-06T02:24:55.0039822+00:00</CreationDateStartUtc>
  <Dispatched>true</Dispatched>
  <ExternalProductionId>sample string 3</ExternalProductionId>
  <Id>e2fa763f-8e9a-473c-b6f9-c01a534273cb</Id>
  <ModifiedDateEndUtc>2025-12-06T02:24:55.0039822+00:00</ModifiedDateEndUtc>
  <ModifiedDateStartUtc>2025-12-06T02:24:55.0039822+00:00</ModifiedDateStartUtc>
  <Name>sample string 1</Name>
  <PaymentDateEndUtc>2025-12-06T02:24:55.0039822+00:00</PaymentDateEndUtc>
  <PaymentDateStartUtc>2025-12-06T02:24:55.0039822+00:00</PaymentDateStartUtc>
  <SearchQuery>sample string 4</SearchQuery>
  <Status>sample string 2</Status>
  <Temporary>true</Temporary>
  <TenantId>09fc0774-b014-4570-a88d-9a43b3abff3b</TenantId>
  <UserId>87e751e0-354d-4ee3-9e17-929054970106</UserId>
</PayOrderFilterCriteria>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.