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": "be63705e-b55c-4572-858e-3c7e0e3a9754",
"BudgetId": "d49cdbc2-6285-4e42-a68a-b1f3dcb9ca9a",
"CreditId": "c36d74bc-ed93-4e6c-a2d8-a361225ed32e",
"TenantId": "e545317b-e0e5-4a0f-8164-be35622beb8b",
"UserId": "df6576c7-1ec8-4317-aad4-58a6fb699c0f",
"OrderId": "3f19d6e0-8ffd-488c-98ff-a345930495d9"
}
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>d49cdbc2-6285-4e42-a68a-b1f3dcb9ca9a</BudgetId> <CreditId>c36d74bc-ed93-4e6c-a2d8-a361225ed32e</CreditId> <Id>be63705e-b55c-4572-858e-3c7e0e3a9754</Id> <OrderId>3f19d6e0-8ffd-488c-98ff-a345930495d9</OrderId> <TenantId>e545317b-e0e5-4a0f-8164-be35622beb8b</TenantId> <UserId>df6576c7-1ec8-4317-aad4-58a6fb699c0f</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.