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": "b2c1038c-ba49-4f0c-ac38-8d233c5ff74d",
"BudgetId": "76244941-ba5e-495e-a266-d7aba0381e64",
"TenantId": "34ba1cdd-e544-4f2b-affd-3cc9289a3292",
"UserId": "e7b6ec99-3923-4254-9908-eecc00fba1e4",
"BudgetFromDate": "2026-03-16T13:52:53.8393086+00:00",
"BudgetToDate": "2026-03-16T13:52:53.8393086+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:52:53.8393086+00:00</BudgetFromDate> <BudgetId>76244941-ba5e-495e-a266-d7aba0381e64</BudgetId> <BudgetToDate>2026-03-16T13:52:53.8393086+00:00</BudgetToDate> <Id>b2c1038c-ba49-4f0c-ac38-8d233c5ff74d</Id> <TenantId>34ba1cdd-e544-4f2b-affd-3cc9289a3292</TenantId> <UserId>e7b6ec99-3923-4254-9908-eecc00fba1e4</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.