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
NameDescriptionTypeAdditional 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": "11d9aa23-2ef5-46f7-a491-939a8afe4cc9",
  "BudgetId": "e726e839-c873-48cb-a111-fb941a4398e4",
  "CreditId": "32dd322d-cc92-40ca-b836-9204db4e8cb0",
  "TenantId": "4bfd68f6-17cf-4806-a63f-448e76d38a97",
  "UserId": "b047a1af-7a12-41e2-9864-ddaab0ba9231",
  "OrderId": "dd111736-ef36-41d2-ac0b-a92e1a3b0190"
}

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>e726e839-c873-48cb-a111-fb941a4398e4</BudgetId>
  <CreditId>32dd322d-cc92-40ca-b836-9204db4e8cb0</CreditId>
  <Id>11d9aa23-2ef5-46f7-a491-939a8afe4cc9</Id>
  <OrderId>dd111736-ef36-41d2-ac0b-a92e1a3b0190</OrderId>
  <TenantId>4bfd68f6-17cf-4806-a63f-448e76d38a97</TenantId>
  <UserId>b047a1af-7a12-41e2-9864-ddaab0ba9231</UserId>
</TransactionFilterCriteria>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.