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": "10cf0a9f-142a-4f1f-a4b3-e1921c3fdc93",
"ResourceId": "00633469-dfec-4569-a734-41cb448264e4",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-06-05T16:25:09.9329771+00:00",
"DateBetweenEnd": "2026-06-05T16:25:09.9329771+00:00",
"HourOffset": 2,
"PlanId": "e7617586-9cbd-4984-9d05-21df7d6ddd1c"
}
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": "875d89c8-5288-4402-92b5-1da1a6ca6184",
"CostTypeId": "caedd089-6586-44bd-bb45-29c7f317f240",
"ResourceId": "6f9c7f6d-9b47-4eee-a173-862216a69255",
"RowId": "360c5c4f-8697-48a0-829f-23fd3f1c7633",
"UserId": "52546678-8dab-4fc4-953d-2e5f3d18740d",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-05T16:25:09.9329771+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-05T16:25:09.9329771+00:00": 2.0
},
"MonthRange_Start": "2026-06-05T16:25:09.9329771+00:00",
"MonthRange_End": "2026-06-05T16:25:09.9329771+00:00",
"id": "707b6843-6ea5-42d4-bed9-4090641157b2",
"ConfigId": "51410d3f-ba22-4e18-a4af-c7563f7d9b7e"
},
{
"PlanId": "875d89c8-5288-4402-92b5-1da1a6ca6184",
"CostTypeId": "caedd089-6586-44bd-bb45-29c7f317f240",
"ResourceId": "6f9c7f6d-9b47-4eee-a173-862216a69255",
"RowId": "360c5c4f-8697-48a0-829f-23fd3f1c7633",
"UserId": "52546678-8dab-4fc4-953d-2e5f3d18740d",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-05T16:25:09.9329771+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-05T16:25:09.9329771+00:00": 2.0
},
"MonthRange_Start": "2026-06-05T16:25:09.9329771+00:00",
"MonthRange_End": "2026-06-05T16:25:09.9329771+00:00",
"id": "707b6843-6ea5-42d4-bed9-4090641157b2",
"ConfigId": "51410d3f-ba22-4e18-a4af-c7563f7d9b7e"
}
]