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": "484b701b-85ad-40d8-b389-62736a078cbe",
"ResourceId": "20cd7fca-7e3c-4c38-ac2d-08eea62b855e",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-03-18T03:50:21.708836+00:00",
"DateBetweenEnd": "2026-03-18T03:50:21.708836+00:00",
"HourOffset": 2,
"PlanId": "76c16f61-eab4-4b2b-afef-c1707e4d0d66"
}
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": "6c9c744e-f3e6-4ccb-a15e-860444051375",
"CostTypeId": "0beded6c-dd4c-4c4a-a8b5-6926b5bb341e",
"ResourceId": "f514eb6c-0be1-4049-b99c-9f10674cc762",
"RowId": "928016c1-0209-4655-b740-326c54632145",
"UserId": "1f976c3b-1bbb-4204-b63b-00255d46d829",
"AuthKey": "sample string 6",
"Timestamp": "2026-03-18T03:50:21.708836+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-03-18T03:50:21.708836+00:00": 2.0
},
"MonthRange_Start": "2026-03-18T03:50:21.708836+00:00",
"MonthRange_End": "2026-03-18T03:50:21.708836+00:00",
"id": "af456b12-c8e8-4258-ae4c-5c5aa1acf27e",
"ConfigId": "8addc307-853d-4ad7-8c5a-467f4d900fbc"
},
{
"PlanId": "6c9c744e-f3e6-4ccb-a15e-860444051375",
"CostTypeId": "0beded6c-dd4c-4c4a-a8b5-6926b5bb341e",
"ResourceId": "f514eb6c-0be1-4049-b99c-9f10674cc762",
"RowId": "928016c1-0209-4655-b740-326c54632145",
"UserId": "1f976c3b-1bbb-4204-b63b-00255d46d829",
"AuthKey": "sample string 6",
"Timestamp": "2026-03-18T03:50:21.708836+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-03-18T03:50:21.708836+00:00": 2.0
},
"MonthRange_Start": "2026-03-18T03:50:21.708836+00:00",
"MonthRange_End": "2026-03-18T03:50:21.708836+00:00",
"id": "af456b12-c8e8-4258-ae4c-5c5aa1acf27e",
"ConfigId": "8addc307-853d-4ad7-8c5a-467f4d900fbc"
}
]