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": "938fa10f-7b7a-40ad-b344-370c27c1ea5a",
"ResourceId": "57bc0332-8242-4645-9132-49e15f17f0ec",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-01-28T22:18:42.6103569+00:00",
"DateBetweenEnd": "2026-01-28T22:18:42.6103569+00:00",
"HourOffset": 2,
"PlanId": "d90b9480-3dda-41b0-ac90-7afb4fa836f3"
}
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": "ae503ddc-76df-440a-a496-c6b86a43217a",
"CostTypeId": "ef8cb9a1-7caa-40fd-a3ee-fd7c552fdebe",
"ResourceId": "1a91c053-b459-4bdd-a99e-4d9a49b7d9fa",
"RowId": "3ea46e4b-f0ca-4aad-9bef-70f801ea020d",
"UserId": "16faf4e4-836c-462c-9ddb-039c37d2221c",
"AuthKey": "sample string 6",
"Timestamp": "2026-01-28T22:18:42.6259824+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-01-28T22:18:42.6259824+00:00": 2.0
},
"MonthRange_Start": "2026-01-28T22:18:42.6259824+00:00",
"MonthRange_End": "2026-01-28T22:18:42.6259824+00:00",
"id": "1d29f378-3f6b-49f0-8e84-32ee51888437",
"ConfigId": "bc58f6d6-d473-4261-bcdc-eab773dfbff3"
},
{
"PlanId": "ae503ddc-76df-440a-a496-c6b86a43217a",
"CostTypeId": "ef8cb9a1-7caa-40fd-a3ee-fd7c552fdebe",
"ResourceId": "1a91c053-b459-4bdd-a99e-4d9a49b7d9fa",
"RowId": "3ea46e4b-f0ca-4aad-9bef-70f801ea020d",
"UserId": "16faf4e4-836c-462c-9ddb-039c37d2221c",
"AuthKey": "sample string 6",
"Timestamp": "2026-01-28T22:18:42.6259824+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-01-28T22:18:42.6259824+00:00": 2.0
},
"MonthRange_Start": "2026-01-28T22:18:42.6259824+00:00",
"MonthRange_End": "2026-01-28T22:18:42.6259824+00:00",
"id": "1d29f378-3f6b-49f0-8e84-32ee51888437",
"ConfigId": "bc58f6d6-d473-4261-bcdc-eab773dfbff3"
}
]