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": "76106c6d-7f7c-446f-b7b5-7a6ec3158e0e",
"BudgetId": "a8b79020-084c-442e-a507-e1608f500f2c",
"CreditId": "88210840-3713-492a-b2db-dc4ab49319be",
"TenantId": "ce517ce7-ccca-451a-b167-a4f3eb69b736",
"UserId": "acc4a8c5-1bb9-40b6-b903-98054949b9f6",
"OrderId": "1c988123-22e3-4055-b9e8-f3b43fa8b940"
}
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>a8b79020-084c-442e-a507-e1608f500f2c</BudgetId> <CreditId>88210840-3713-492a-b2db-dc4ab49319be</CreditId> <Id>76106c6d-7f7c-446f-b7b5-7a6ec3158e0e</Id> <OrderId>1c988123-22e3-4055-b9e8-f3b43fa8b940</OrderId> <TenantId>ce517ce7-ccca-451a-b167-a4f3eb69b736</TenantId> <UserId>acc4a8c5-1bb9-40b6-b903-98054949b9f6</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.