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": "da51d4aa-d1b0-41dd-bc19-90f0b0e10a9f",
"ResourceId": "b8873a11-0c6b-436b-9045-67189775df4f",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2025-12-16T06:06:14.6880907+00:00",
"DateBetweenEnd": "2025-12-16T06:06:14.6880907+00:00",
"HourOffset": 2,
"PlanId": "cb41a4cc-290e-4cc4-9612-b46d86ba6b64"
}
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": "a9441ede-a075-4dd7-a755-644bb62a1ae4",
"CostTypeId": "94db517f-be2c-4bd9-b4c6-6fccb7c5172e",
"ResourceId": "541ce491-284a-410b-b1b5-ac601b59b379",
"RowId": "7c7dc845-5dcf-48d3-80b7-030caf1361ad",
"UserId": "ee829505-6f98-4491-9018-c6a29d653076",
"AuthKey": "sample string 6",
"Timestamp": "2025-12-16T06:06:14.6880907+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2025-12-16T06:06:14.6880907+00:00": 2.0
},
"MonthRange_Start": "2025-12-16T06:06:14.6880907+00:00",
"MonthRange_End": "2025-12-16T06:06:14.6880907+00:00",
"id": "1a3803c2-d7e9-45da-9d78-8cf096f91955",
"ConfigId": "19782a90-4c39-4e5b-be99-762c126e91bc"
},
{
"PlanId": "a9441ede-a075-4dd7-a755-644bb62a1ae4",
"CostTypeId": "94db517f-be2c-4bd9-b4c6-6fccb7c5172e",
"ResourceId": "541ce491-284a-410b-b1b5-ac601b59b379",
"RowId": "7c7dc845-5dcf-48d3-80b7-030caf1361ad",
"UserId": "ee829505-6f98-4491-9018-c6a29d653076",
"AuthKey": "sample string 6",
"Timestamp": "2025-12-16T06:06:14.6880907+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2025-12-16T06:06:14.6880907+00:00": 2.0
},
"MonthRange_Start": "2025-12-16T06:06:14.6880907+00:00",
"MonthRange_End": "2025-12-16T06:06:14.6880907+00:00",
"id": "1a3803c2-d7e9-45da-9d78-8cf096f91955",
"ConfigId": "19782a90-4c39-4e5b-be99-762c126e91bc"
}
]