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": "c72ff9ec-7c6c-4e43-bcf0-04140ab8f39e",
"ResourceId": "01784099-8ad3-4343-83bf-96a52c5dd738",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-08-30T19:50:28.8605864+00:00",
"DateBetweenEnd": "2026-08-30T19:50:28.8605864+00:00",
"HourOffset": 2,
"PlanId": "b21a121e-1267-4fbe-870a-e7fc4c63f54e"
}
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": "80973424-c5ed-42d4-a517-3e3cf6a18641",
"CostTypeId": "7858fb07-89e4-4b22-a19a-e5a3de827313",
"ResourceId": "c3c468e8-d3df-411f-baeb-905d3a385ab0",
"RowId": "3f9028c4-9d21-412e-bae7-ea0ef454ce21",
"UserId": "7e7f8a6f-6ef4-4073-83a4-14117faadb21",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-30T19:50:28.8605864+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-30T19:50:28.8605864+00:00": 2.0
},
"MonthRange_Start": "2026-08-30T19:50:28.8605864+00:00",
"MonthRange_End": "2026-08-30T19:50:28.8605864+00:00",
"id": "408f3b38-39d4-4517-9cdf-37eaa86a05cf",
"ConfigId": "70987439-7983-4dbb-b277-f56f22a28e46"
},
{
"PlanId": "80973424-c5ed-42d4-a517-3e3cf6a18641",
"CostTypeId": "7858fb07-89e4-4b22-a19a-e5a3de827313",
"ResourceId": "c3c468e8-d3df-411f-baeb-905d3a385ab0",
"RowId": "3f9028c4-9d21-412e-bae7-ea0ef454ce21",
"UserId": "7e7f8a6f-6ef4-4073-83a4-14117faadb21",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-30T19:50:28.8605864+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-30T19:50:28.8605864+00:00": 2.0
},
"MonthRange_Start": "2026-08-30T19:50:28.8605864+00:00",
"MonthRange_End": "2026-08-30T19:50:28.8605864+00:00",
"id": "408f3b38-39d4-4517-9cdf-37eaa86a05cf",
"ConfigId": "70987439-7983-4dbb-b277-f56f22a28e46"
}
]