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:52:52.8539844+00:00",
"DateTo": "2026-03-16T13:52:52.8539844+00:00",
"TenantId": "7133171a-32b4-46bc-9835-1ae8d0d56da9",
"OrderId": "1a9e20d2-1d5e-4c8b-b366-eaafd74b80e0"
}
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:52:52.8539844+00:00</DateFrom> <DateTo>2026-03-16T13:52:52.8539844+00:00</DateTo> <OrderId>1a9e20d2-1d5e-4c8b-b366-eaafd74b80e0</OrderId> <TenantId>7133171a-32b4-46bc-9835-1ae8d0d56da9</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.