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": "2b715f6b-2cdf-40b4-ba57-81dcd09824a7",
"ResourceId": "f6d9bcba-2b77-4704-86fc-4d91172198e6",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-06-28T23:24:26.3855753+00:00",
"DateBetweenEnd": "2026-06-28T23:24:26.3855753+00:00",
"HourOffset": 2,
"PlanId": "b52b632b-4a38-40fa-8ace-89b9a7bf8c1d"
}
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": "c1ec6958-1c95-474a-9c94-09ceba518c49",
"CostTypeId": "9880ade1-9165-494c-b419-cae9e07332b4",
"ResourceId": "b01d1502-4638-4640-87fc-b03d31c6cc4b",
"RowId": "9724e3ce-7a5a-46b4-ba77-b292fb4b3ea5",
"UserId": "c9a2dd05-511d-4988-8cda-6da73956acb0",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-28T23:24:26.3855753+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-28T23:24:26.3855753+00:00": 2.0
},
"MonthRange_Start": "2026-06-28T23:24:26.3855753+00:00",
"MonthRange_End": "2026-06-28T23:24:26.3855753+00:00",
"id": "fc6817e4-2178-4a1b-b137-35082ebbdbb8",
"ConfigId": "c2a93067-5c68-4473-9e62-eb24a72d9534"
},
{
"PlanId": "c1ec6958-1c95-474a-9c94-09ceba518c49",
"CostTypeId": "9880ade1-9165-494c-b419-cae9e07332b4",
"ResourceId": "b01d1502-4638-4640-87fc-b03d31c6cc4b",
"RowId": "9724e3ce-7a5a-46b4-ba77-b292fb4b3ea5",
"UserId": "c9a2dd05-511d-4988-8cda-6da73956acb0",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-28T23:24:26.3855753+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-28T23:24:26.3855753+00:00": 2.0
},
"MonthRange_Start": "2026-06-28T23:24:26.3855753+00:00",
"MonthRange_End": "2026-06-28T23:24:26.3855753+00:00",
"id": "fc6817e4-2178-4a1b-b137-35082ebbdbb8",
"ConfigId": "c2a93067-5c68-4473-9e62-eb24a72d9534"
}
]