POST api/Transactions/select
Retrieves a list of transactions that match the given criteria.
Request Information
URI Parameters
None.
Body Parameters
The criteria model to filter transactions by.
TransactionFilterCriteria| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| BudgetId | globally unique identifier |
None. |
|
| CreditId | globally unique identifier |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| OrderId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "3b49ecb7-52b5-409c-80e1-a3ffb1fc8a20",
"BudgetId": "bed73796-6021-4a38-8c70-21bb46eddc96",
"CreditId": "c7813fd9-1a1b-4d3e-bd31-4e1e6606d302",
"TenantId": "dea6b13a-d861-45cc-abec-7771d09402dd",
"UserId": "e4692b91-23d8-465b-b8e6-8095ec1991af",
"OrderId": "e01d5f18-e9a9-4aff-8728-07d55309d401"
}
application/xml, text/xml
Sample:
<TransactionFilterCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Pay.Models.FilterCriteria"> <BudgetId>bed73796-6021-4a38-8c70-21bb46eddc96</BudgetId> <CreditId>c7813fd9-1a1b-4d3e-bd31-4e1e6606d302</CreditId> <Id>3b49ecb7-52b5-409c-80e1-a3ffb1fc8a20</Id> <OrderId>e01d5f18-e9a9-4aff-8728-07d55309d401</OrderId> <TenantId>dea6b13a-d861-45cc-abec-7771d09402dd</TenantId> <UserId>e4692b91-23d8-465b-b8e6-8095ec1991af</UserId> </TransactionFilterCriteria>
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.