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": "ed7efaff-faf3-4703-af63-ccee4db9c63e",
"BudgetId": "729db024-5e05-4e9c-b48f-a87d25cfed7e",
"CreditId": "ec4f6129-93c6-49df-bc39-14d0fe919844",
"TenantId": "006220b9-d9d9-4809-b137-49397577c8ce",
"UserId": "310eeb8e-1db7-435c-a5fb-92636b614e7b",
"OrderId": "1acfbfd5-e5dc-4e47-baa6-f7d2b8e049f3"
}
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>729db024-5e05-4e9c-b48f-a87d25cfed7e</BudgetId> <CreditId>ec4f6129-93c6-49df-bc39-14d0fe919844</CreditId> <Id>ed7efaff-faf3-4703-af63-ccee4db9c63e</Id> <OrderId>1acfbfd5-e5dc-4e47-baa6-f7d2b8e049f3</OrderId> <TenantId>006220b9-d9d9-4809-b137-49397577c8ce</TenantId> <UserId>310eeb8e-1db7-435c-a5fb-92636b614e7b</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.