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": "fee88cd4-0068-4b03-a0c6-ae270320e4c6",
"ResourceId": "5427e6d0-ffd6-4834-b576-9b34c9c0b7be",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-01-21T21:04:18.680168+00:00",
"DateBetweenEnd": "2026-01-21T21:04:18.680168+00:00",
"HourOffset": 2,
"PlanId": "9fa4f56d-1f27-4751-80d8-4a3f58c5b364"
}
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": "4e67f90c-b2e9-48a6-b893-cd110657dca4",
"CostTypeId": "32e040a8-e926-4817-b857-a920505022b9",
"ResourceId": "51e2a963-7135-4c41-9bca-e26fefb6ac95",
"RowId": "23213cec-62ad-4784-8796-414148d7265a",
"UserId": "818a9a2d-99eb-485e-9dbf-1267325ef04d",
"AuthKey": "sample string 6",
"Timestamp": "2026-01-21T21:04:18.680168+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-01-21T21:04:18.680168+00:00": 2.0
},
"MonthRange_Start": "2026-01-21T21:04:18.680168+00:00",
"MonthRange_End": "2026-01-21T21:04:18.680168+00:00",
"id": "18286c70-446d-43d4-bdac-fe2009e0cede",
"ConfigId": "b7fd4e7d-3025-4e05-a026-9837e0d0664b"
},
{
"PlanId": "4e67f90c-b2e9-48a6-b893-cd110657dca4",
"CostTypeId": "32e040a8-e926-4817-b857-a920505022b9",
"ResourceId": "51e2a963-7135-4c41-9bca-e26fefb6ac95",
"RowId": "23213cec-62ad-4784-8796-414148d7265a",
"UserId": "818a9a2d-99eb-485e-9dbf-1267325ef04d",
"AuthKey": "sample string 6",
"Timestamp": "2026-01-21T21:04:18.680168+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-01-21T21:04:18.680168+00:00": 2.0
},
"MonthRange_Start": "2026-01-21T21:04:18.680168+00:00",
"MonthRange_End": "2026-01-21T21:04:18.680168+00:00",
"id": "18286c70-446d-43d4-bdac-fe2009e0cede",
"ConfigId": "b7fd4e7d-3025-4e05-a026-9837e0d0664b"
}
]