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-01-21T09:49:19.9803266+00:00",
"DateTo": "2026-01-21T09:49:19.9803266+00:00",
"TenantId": "462b7989-451d-42bb-93c1-1d23f67c3b50",
"OrderId": "c62458f0-a67d-45b2-99b0-30f0aad5885f"
}
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-01-21T09:49:19.9803266+00:00</DateFrom> <DateTo>2026-01-21T09:49:19.9803266+00:00</DateTo> <OrderId>c62458f0-a67d-45b2-99b0-30f0aad5885f</OrderId> <TenantId>462b7989-451d-42bb-93c1-1d23f67c3b50</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.