POST api/audit/resources/{planId}
Gets a list of Resource Plan Audits based on the passed filter values.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| planId | string |
None. |
Body Parameters
If PlanId is an empty Guid - will return audits based on the global resource plan.
Audit_ResourcePlansQuery| Name | Description | Type | Additional information |
|---|---|---|---|
| Action | string |
None. |
|
| UserId | globally unique identifier |
None. |
|
| ResourceId | globally unique identifier |
None. |
|
| Columns | Collection of string |
None. |
|
| DateBetweenStart | date |
None. |
|
| DateBetweenEnd | date |
None. |
|
| HourOffset | integer |
None. |
|
| PlanId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Action": "sample string 1",
"UserId": "7822d6ea-0140-427d-87c9-b44c1fbad03c",
"ResourceId": "b6d5bee5-d01e-4810-b3ab-ae9fd1301cff",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-06-12T13:08:05.2687438+00:00",
"DateBetweenEnd": "2026-06-12T13:08:05.2687438+00:00",
"HourOffset": 2,
"PlanId": "e7c01d1f-7e87-4c84-adc9-97805da1534a"
}
Response Information
Resource Description
Collection of Audit_ResourcePlans| Name | Description | Type | Additional information |
|---|---|---|---|
| PlanId | globally unique identifier |
None. |
|
| CostTypeId | globally unique identifier |
None. |
|
| ResourceId | globally unique identifier |
None. |
|
| RowId | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| AuthKey | string |
None. |
|
| Timestamp | date |
None. |
|
| Action | string |
None. |
|
| UpdatedColumnValues | Dictionary of date [key] and decimal number [value] |
None. |
|
| MonthRange_Start | date |
None. |
|
| MonthRange_End | date |
None. |
|
| id | globally unique identifier |
None. |
|
| ConfigId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"PlanId": "2761b457-e293-4a72-af35-ff9b7a5ec928",
"CostTypeId": "056f61e3-cf46-403c-95f5-dac9fa7d2976",
"ResourceId": "f3228125-1cc6-49cb-8ab4-80e5af5b0a0c",
"RowId": "18717ea3-7e14-4222-bb0f-f281e6186ec8",
"UserId": "30d4e9a3-e296-497f-aaa9-ce0fb8c7894a",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-12T13:08:05.2687438+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-12T13:08:05.2687438+00:00": 2.0
},
"MonthRange_Start": "2026-06-12T13:08:05.2687438+00:00",
"MonthRange_End": "2026-06-12T13:08:05.2687438+00:00",
"id": "9388f8ca-3186-4380-be69-e5f321e349e8",
"ConfigId": "76407a69-901f-45e4-9c21-595bcf2de151"
},
{
"PlanId": "2761b457-e293-4a72-af35-ff9b7a5ec928",
"CostTypeId": "056f61e3-cf46-403c-95f5-dac9fa7d2976",
"ResourceId": "f3228125-1cc6-49cb-8ab4-80e5af5b0a0c",
"RowId": "18717ea3-7e14-4222-bb0f-f281e6186ec8",
"UserId": "30d4e9a3-e296-497f-aaa9-ce0fb8c7894a",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-12T13:08:05.2687438+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-12T13:08:05.2687438+00:00": 2.0
},
"MonthRange_Start": "2026-06-12T13:08:05.2687438+00:00",
"MonthRange_End": "2026-06-12T13:08:05.2687438+00:00",
"id": "9388f8ca-3186-4380-be69-e5f321e349e8",
"ConfigId": "76407a69-901f-45e4-9c21-595bcf2de151"
}
]