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": "2025-12-11T08:27:31.4981385+00:00",
"DateTo": "2025-12-11T08:27:31.4981385+00:00",
"TenantId": "ae5046cf-9cb3-40fb-b5ed-48cbb9297790",
"OrderId": "298a46e0-9ddd-431f-a360-e8bb698b23e7"
}
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>2025-12-11T08:27:31.4981385+00:00</DateFrom> <DateTo>2025-12-11T08:27:31.4981385+00:00</DateTo> <OrderId>298a46e0-9ddd-431f-a360-e8bb698b23e7</OrderId> <TenantId>ae5046cf-9cb3-40fb-b5ed-48cbb9297790</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.