POST api/allocations/select
Retrieves a list of allocations that match the given criteria.
Request Information
URI Parameters
None.
Body Parameters
The criteria model to filter allocations by.
AllocationFilterCriteria| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| BudgetId | globally unique identifier |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| BudgetFromDate | date |
None. |
|
| BudgetToDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "4ec3af95-fd15-4a75-9c36-698be34df8b3",
"BudgetId": "a52f91ce-870b-406c-af97-f38928f22023",
"TenantId": "49671f12-68c7-4a75-b66b-07b879144045",
"UserId": "60276f27-d50d-4baa-84a1-1bbdc11fc0c6",
"BudgetFromDate": "2026-03-16T13:59:48.537104+00:00",
"BudgetToDate": "2026-03-16T13:59:48.537104+00:00"
}
application/xml, text/xml
Sample:
<AllocationFilterCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Pay.Models.FilterCriteria"> <BudgetFromDate>2026-03-16T13:59:48.537104+00:00</BudgetFromDate> <BudgetId>a52f91ce-870b-406c-af97-f38928f22023</BudgetId> <BudgetToDate>2026-03-16T13:59:48.537104+00:00</BudgetToDate> <Id>4ec3af95-fd15-4a75-9c36-698be34df8b3</Id> <TenantId>49671f12-68c7-4a75-b66b-07b879144045</TenantId> <UserId>60276f27-d50d-4baa-84a1-1bbdc11fc0c6</UserId> </AllocationFilterCriteria>
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.