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": "9e3d1297-3929-4505-986c-5b5dd7b04385",
"ResourceId": "56a35b1a-2d73-4b50-a374-4b85713492db",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-09-18T00:54:51.9425062+00:00",
"DateBetweenEnd": "2026-09-18T00:54:51.9425062+00:00",
"HourOffset": 2,
"PlanId": "251c1c18-d3c7-4d47-8339-22f4a7f71eeb"
}
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": "cb751f87-9ae8-4972-a860-32fc327eb634",
"CostTypeId": "bfed4870-fa9f-44c8-9d06-bd3fcfc1aa7a",
"ResourceId": "c66204bf-d7e8-41e4-82c8-fa8fa741380d",
"RowId": "8302fc35-0269-45c0-9a63-ac6e12ef4f46",
"UserId": "00f0090c-4b21-4db3-971e-c76d04999451",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-18T00:54:51.9425062+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-18T00:54:51.9425062+00:00": 2.0
},
"MonthRange_Start": "2026-09-18T00:54:51.9425062+00:00",
"MonthRange_End": "2026-09-18T00:54:51.9425062+00:00",
"id": "ff1976d9-8f31-4c41-8d73-4b25455b84ab",
"ConfigId": "863c7a18-7960-46eb-b7cd-c3f349efd472"
},
{
"PlanId": "cb751f87-9ae8-4972-a860-32fc327eb634",
"CostTypeId": "bfed4870-fa9f-44c8-9d06-bd3fcfc1aa7a",
"ResourceId": "c66204bf-d7e8-41e4-82c8-fa8fa741380d",
"RowId": "8302fc35-0269-45c0-9a63-ac6e12ef4f46",
"UserId": "00f0090c-4b21-4db3-971e-c76d04999451",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-18T00:54:51.9425062+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-18T00:54:51.9425062+00:00": 2.0
},
"MonthRange_Start": "2026-09-18T00:54:51.9425062+00:00",
"MonthRange_End": "2026-09-18T00:54:51.9425062+00:00",
"id": "ff1976d9-8f31-4c41-8d73-4b25455b84ab",
"ConfigId": "863c7a18-7960-46eb-b7cd-c3f349efd472"
}
]