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": "98190f58-095f-405c-ab57-9d8007b7219f",
"BudgetId": "a304a29f-8900-41f7-83cd-778be03ca5ca",
"TenantId": "f332891d-01be-45b2-93ae-bf834cf094b1",
"UserId": "60ae3ccd-045e-4433-8c78-c0721c6f094b",
"BudgetFromDate": "2026-07-04T14:02:59.1702527+00:00",
"BudgetToDate": "2026-07-04T14:02:59.1702527+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-07-04T14:02:59.1702527+00:00</BudgetFromDate> <BudgetId>a304a29f-8900-41f7-83cd-778be03ca5ca</BudgetId> <BudgetToDate>2026-07-04T14:02:59.1702527+00:00</BudgetToDate> <Id>98190f58-095f-405c-ab57-9d8007b7219f</Id> <TenantId>f332891d-01be-45b2-93ae-bf834cf094b1</TenantId> <UserId>60ae3ccd-045e-4433-8c78-c0721c6f094b</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.