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": "f230c3a4-6ae9-40e8-a1bf-e024dc4a3ac1",
"ResourceId": "16392817-6d92-4b42-8069-3fd6d5c762f8",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-06-15T14:20:18.7091217+00:00",
"DateBetweenEnd": "2026-06-15T14:20:18.7091217+00:00",
"HourOffset": 2,
"PlanId": "f9466869-9d9c-4530-a84c-65e41eea8656"
}
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": "88d499f8-34d4-4da5-bfce-833fcbe413d4",
"CostTypeId": "02d3b254-25f5-4750-8c51-3ca399f69df1",
"ResourceId": "d04855b1-6223-4760-96d7-d98fd017ca08",
"RowId": "159f00ea-4f45-41b2-aa01-769d124701b2",
"UserId": "07e80227-b243-491b-8229-6e20b635b66b",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-15T14:20:18.7247468+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-15T14:20:18.7247468+00:00": 2.0
},
"MonthRange_Start": "2026-06-15T14:20:18.7247468+00:00",
"MonthRange_End": "2026-06-15T14:20:18.7247468+00:00",
"id": "951da92c-b982-465d-a7af-a425f151cb16",
"ConfigId": "3f494ed1-d5ac-403d-88c0-6f3a8504c78c"
},
{
"PlanId": "88d499f8-34d4-4da5-bfce-833fcbe413d4",
"CostTypeId": "02d3b254-25f5-4750-8c51-3ca399f69df1",
"ResourceId": "d04855b1-6223-4760-96d7-d98fd017ca08",
"RowId": "159f00ea-4f45-41b2-aa01-769d124701b2",
"UserId": "07e80227-b243-491b-8229-6e20b635b66b",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-15T14:20:18.7247468+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-15T14:20:18.7247468+00:00": 2.0
},
"MonthRange_Start": "2026-06-15T14:20:18.7247468+00:00",
"MonthRange_End": "2026-06-15T14:20:18.7247468+00:00",
"id": "951da92c-b982-465d-a7af-a425f151cb16",
"ConfigId": "3f494ed1-d5ac-403d-88c0-6f3a8504c78c"
}
]