POST api/PaymentRequests/select
Retrieves a list of payment requests that match the given criteria.
Request Information
URI Parameters
None.
Body Parameters
The criteria model to filter payment requests by.
PaymentRequestFilterCriteria| Name | Description | Type | Additional information |
|---|---|---|---|
| DateFrom | date |
None. |
|
| DateTo | date |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| OrderId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"DateFrom": "2026-08-29T17:34:12.2094568+00:00",
"DateTo": "2026-08-29T17:34:12.2094568+00:00",
"TenantId": "37591f87-54b1-41eb-baf7-b796c5f1a9b7",
"OrderId": "2a1fcf5d-747c-44c6-800f-f7b34a9f59d2"
}
application/xml, text/xml
Sample:
<PaymentRequestFilterCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Pay.Models.FilterCriteria"> <DateFrom>2026-08-29T17:34:12.2094568+00:00</DateFrom> <DateTo>2026-08-29T17:34:12.2094568+00:00</DateTo> <OrderId>2a1fcf5d-747c-44c6-800f-f7b34a9f59d2</OrderId> <TenantId>37591f87-54b1-41eb-baf7-b796c5f1a9b7</TenantId> </PaymentRequestFilterCriteria>
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.