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-03-16T13:59:49.0410289+00:00",
"DateTo": "2026-03-16T13:59:49.0410289+00:00",
"TenantId": "0de68842-31c2-4793-9441-95f88abf15bb",
"OrderId": "7446ba38-4415-46cd-ac0b-a1bf49b2d1d0"
}
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-03-16T13:59:49.0410289+00:00</DateFrom> <DateTo>2026-03-16T13:59:49.0410289+00:00</DateTo> <OrderId>7446ba38-4415-46cd-ac0b-a1bf49b2d1d0</OrderId> <TenantId>0de68842-31c2-4793-9441-95f88abf15bb</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.