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| Name | Description | Type | Additional 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": "062b3330-3260-47a2-92fe-610e0c4c5382",
"TenantId": "bec985a2-42a2-4e24-866f-3c8d0786929f",
"UserId": "a9b99143-8a52-45f7-bd81-74465cb535d5",
"IncludeCancelled": true,
"IncludeExpired": true,
"BudgetFromDate": "2026-01-21T09:39:44.9624558+00:00",
"BudgetToDate": "2026-01-21T09:39:44.9624558+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>2026-01-21T09:39:44.9624558+00:00</BudgetFromDate> <BudgetToDate>2026-01-21T09:39:44.9624558+00:00</BudgetToDate> <Id>062b3330-3260-47a2-92fe-610e0c4c5382</Id> <IncludeAllocations>true</IncludeAllocations> <IncludeCancelled>true</IncludeCancelled> <IncludeExpired>true</IncludeExpired> <TenantId>bec985a2-42a2-4e24-866f-3c8d0786929f</TenantId> <UserId>a9b99143-8a52-45f7-bd81-74465cb535d5</UserId> </BudgetFilterCriteria>
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.