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": "3b1fb809-30f9-4983-8b70-8bb78d803a09",
"BudgetId": "ecac169b-e908-41e9-b9eb-38677a405f40",
"TenantId": "f3cd22c3-b261-40b3-bd29-0c387b192acb",
"UserId": "0935f287-e20f-4131-a03e-0944c4bb7fbd",
"BudgetFromDate": "2026-08-28T13:46:42.0993093+00:00",
"BudgetToDate": "2026-08-28T13:46:42.0993093+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-08-28T13:46:42.0993093+00:00</BudgetFromDate> <BudgetId>ecac169b-e908-41e9-b9eb-38677a405f40</BudgetId> <BudgetToDate>2026-08-28T13:46:42.0993093+00:00</BudgetToDate> <Id>3b1fb809-30f9-4983-8b70-8bb78d803a09</Id> <TenantId>f3cd22c3-b261-40b3-bd29-0c387b192acb</TenantId> <UserId>0935f287-e20f-4131-a03e-0944c4bb7fbd</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.