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": "4a658919-a306-4b92-a77e-1ceb70af9d11",
"BudgetId": "bb10d4c1-2b58-4f96-8195-c26fa20290c0",
"TenantId": "290fdaa9-9cf0-4a72-b32f-d7ce4f7e13a1",
"UserId": "678d26f7-bf02-4c5c-a6fc-ad172803eb4c",
"BudgetFromDate": "2026-08-29T17:34:12.7126657+00:00",
"BudgetToDate": "2026-08-29T17:34:12.7126657+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-29T17:34:12.7126657+00:00</BudgetFromDate> <BudgetId>bb10d4c1-2b58-4f96-8195-c26fa20290c0</BudgetId> <BudgetToDate>2026-08-29T17:34:12.7126657+00:00</BudgetToDate> <Id>4a658919-a306-4b92-a77e-1ceb70af9d11</Id> <TenantId>290fdaa9-9cf0-4a72-b32f-d7ce4f7e13a1</TenantId> <UserId>678d26f7-bf02-4c5c-a6fc-ad172803eb4c</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.