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": "2bdf3a8b-15a6-4e8d-91b0-df7e02cb591f",
"BudgetId": "b4eb456f-35d1-40d3-8a59-933dfe308491",
"CreditId": "3aa3d6e0-1683-4b6a-ab20-82c7a694ad38",
"TenantId": "78cdd622-68de-4834-9f93-dbb69e1121ab",
"UserId": "54a38aea-1ebf-4fd0-8ac7-11e6be46d157",
"OrderId": "aacf49d1-252f-4d42-bb78-330e6b03ac2b"
}
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>b4eb456f-35d1-40d3-8a59-933dfe308491</BudgetId> <CreditId>3aa3d6e0-1683-4b6a-ab20-82c7a694ad38</CreditId> <Id>2bdf3a8b-15a6-4e8d-91b0-df7e02cb591f</Id> <OrderId>aacf49d1-252f-4d42-bb78-330e6b03ac2b</OrderId> <TenantId>78cdd622-68de-4834-9f93-dbb69e1121ab</TenantId> <UserId>54a38aea-1ebf-4fd0-8ac7-11e6be46d157</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.