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": "7cdf8fa6-66e4-4032-9bcd-ebad41b70346",
"ResourceId": "545661f3-e3bf-41ab-b8ae-882822e2cbe8",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-07-19T04:21:54.6126724+00:00",
"DateBetweenEnd": "2026-07-19T04:21:54.6126724+00:00",
"HourOffset": 2,
"PlanId": "501bb798-be2e-4bdf-8af4-5cb547a4f362"
}
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": "ce58d786-ef80-4a7a-84dc-b1485dabed2e",
"CostTypeId": "5c78badb-bb34-4d22-be4d-0bf66a30e2e2",
"ResourceId": "6dbb7a2e-4c90-4f24-ac5a-a1b61b6b2181",
"RowId": "0e7a5eed-508a-4911-9c99-1c4535528a8f",
"UserId": "304ef66b-5fbc-4593-9d91-4c7c25c4db10",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-19T04:21:54.6126724+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-19T04:21:54.6126724+00:00": 2.0
},
"MonthRange_Start": "2026-07-19T04:21:54.6126724+00:00",
"MonthRange_End": "2026-07-19T04:21:54.6126724+00:00",
"id": "d3687a21-99a4-4609-81ef-cc087fdf263c",
"ConfigId": "b36178e7-3462-4818-9447-188ddf747d83"
},
{
"PlanId": "ce58d786-ef80-4a7a-84dc-b1485dabed2e",
"CostTypeId": "5c78badb-bb34-4d22-be4d-0bf66a30e2e2",
"ResourceId": "6dbb7a2e-4c90-4f24-ac5a-a1b61b6b2181",
"RowId": "0e7a5eed-508a-4911-9c99-1c4535528a8f",
"UserId": "304ef66b-5fbc-4593-9d91-4c7c25c4db10",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-19T04:21:54.6126724+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-19T04:21:54.6126724+00:00": 2.0
},
"MonthRange_Start": "2026-07-19T04:21:54.6126724+00:00",
"MonthRange_End": "2026-07-19T04:21:54.6126724+00:00",
"id": "d3687a21-99a4-4609-81ef-cc087fdf263c",
"ConfigId": "b36178e7-3462-4818-9447-188ddf747d83"
}
]