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": "dbfd319f-06be-409f-98f8-1684ba124d62",
"ResourceId": "709f19ee-4a75-49c2-a4de-3f87f5c0d9a7",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-03-08T07:30:48.5752029+00:00",
"DateBetweenEnd": "2026-03-08T07:30:48.5752029+00:00",
"HourOffset": 2,
"PlanId": "741c58ec-96a8-4eda-9d51-159bf0a9ce10"
}
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": "8b517201-e661-4243-bbf2-3dafdb1c04dd",
"CostTypeId": "14ac17c1-3833-4c7e-b439-7dc3a87c2559",
"ResourceId": "36681185-e6e6-4ce0-ad8e-e915647a2a4f",
"RowId": "3c19779d-6411-4d81-b80f-9e39bccba0de",
"UserId": "b95536aa-1fe6-4702-931b-4b56a6e2ad9b",
"AuthKey": "sample string 6",
"Timestamp": "2026-03-08T07:30:48.5752029+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-03-08T07:30:48.5752029+00:00": 2.0
},
"MonthRange_Start": "2026-03-08T07:30:48.5752029+00:00",
"MonthRange_End": "2026-03-08T07:30:48.5752029+00:00",
"id": "0ca62e53-e59f-46df-8c5a-e75677d7023f",
"ConfigId": "883094ce-78c5-41ea-b7a9-fa1bd5cefe6b"
},
{
"PlanId": "8b517201-e661-4243-bbf2-3dafdb1c04dd",
"CostTypeId": "14ac17c1-3833-4c7e-b439-7dc3a87c2559",
"ResourceId": "36681185-e6e6-4ce0-ad8e-e915647a2a4f",
"RowId": "3c19779d-6411-4d81-b80f-9e39bccba0de",
"UserId": "b95536aa-1fe6-4702-931b-4b56a6e2ad9b",
"AuthKey": "sample string 6",
"Timestamp": "2026-03-08T07:30:48.5752029+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-03-08T07:30:48.5752029+00:00": 2.0
},
"MonthRange_Start": "2026-03-08T07:30:48.5752029+00:00",
"MonthRange_End": "2026-03-08T07:30:48.5752029+00:00",
"id": "0ca62e53-e59f-46df-8c5a-e75677d7023f",
"ConfigId": "883094ce-78c5-41ea-b7a9-fa1bd5cefe6b"
}
]