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": "85141043-2c25-4c98-a6f7-1e8740539159",
"BudgetId": "13656433-3b13-464f-8480-de80256fa794",
"TenantId": "81ad7512-9b23-4d45-9d60-3f5c757f95fd",
"UserId": "56472b76-1ac9-487f-9396-d9c917fc0f9c",
"BudgetFromDate": "2026-07-04T13:56:09.6311929+00:00",
"BudgetToDate": "2026-07-04T13:56:09.6311929+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-04T13:56:09.6311929+00:00</BudgetFromDate> <BudgetId>13656433-3b13-464f-8480-de80256fa794</BudgetId> <BudgetToDate>2026-07-04T13:56:09.6311929+00:00</BudgetToDate> <Id>85141043-2c25-4c98-a6f7-1e8740539159</Id> <TenantId>81ad7512-9b23-4d45-9d60-3f5c757f95fd</TenantId> <UserId>56472b76-1ac9-487f-9396-d9c917fc0f9c</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.