POST api/Budgets/select

Retrieves a list of budgets that match the given criteria.

Request Information

URI Parameters

None.

Body Parameters

The criteria model to filter budgets by.

BudgetFilterCriteria
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

TenantId

globally unique identifier

None.

UserId

globally unique identifier

None.

IncludeCancelled

boolean

None.

IncludeExpired

boolean

None.

BudgetFromDate

date

None.

BudgetToDate

date

None.

IncludeAllocations

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "72cc7816-5aea-4eec-9d66-cf1d80dd8959",
  "TenantId": "a990f366-0878-4fa2-97d6-b75e691c5476",
  "UserId": "1a1093dc-61b9-4747-83fb-b5278c29eb20",
  "IncludeCancelled": true,
  "IncludeExpired": true,
  "BudgetFromDate": "2025-12-06T02:25:05.5629028+00:00",
  "BudgetToDate": "2025-12-06T02:25:05.5629028+00:00",
  "IncludeAllocations": true
}

application/xml, text/xml

Sample:
<BudgetFilterCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Pay.Models.FilterCriteria">
  <BudgetFromDate>2025-12-06T02:25:05.5629028+00:00</BudgetFromDate>
  <BudgetToDate>2025-12-06T02:25:05.5629028+00:00</BudgetToDate>
  <Id>72cc7816-5aea-4eec-9d66-cf1d80dd8959</Id>
  <IncludeAllocations>true</IncludeAllocations>
  <IncludeCancelled>true</IncludeCancelled>
  <IncludeExpired>true</IncludeExpired>
  <TenantId>a990f366-0878-4fa2-97d6-b75e691c5476</TenantId>
  <UserId>1a1093dc-61b9-4747-83fb-b5278c29eb20</UserId>
</BudgetFilterCriteria>

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.