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": "6ae98f2f-eb47-40ce-aae2-72ada837cce5",
"ResourceId": "38f322e5-114d-4f9e-9982-828a8079dbd0",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-06-03T10:41:08.936435+00:00",
"DateBetweenEnd": "2026-06-03T10:41:08.936435+00:00",
"HourOffset": 2,
"PlanId": "e5803347-b026-4055-a24b-39a484c17534"
}
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": "855a4a91-3047-4100-afbb-882a02a231c1",
"CostTypeId": "9266ea82-873c-4294-8642-b70411e7865e",
"ResourceId": "d0a84169-07ea-4925-bce4-7d881240a98b",
"RowId": "c896f7ec-2b20-4349-94a7-807df664d374",
"UserId": "2a6790d8-1f23-4943-b59a-c1a09c31fc19",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-03T10:41:08.936435+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-03T10:41:08.936435+00:00": 2.0
},
"MonthRange_Start": "2026-06-03T10:41:08.936435+00:00",
"MonthRange_End": "2026-06-03T10:41:08.936435+00:00",
"id": "df233140-2e13-4e13-8322-e418bb9f2784",
"ConfigId": "b0d33619-4021-4643-a586-a38001c599b9"
},
{
"PlanId": "855a4a91-3047-4100-afbb-882a02a231c1",
"CostTypeId": "9266ea82-873c-4294-8642-b70411e7865e",
"ResourceId": "d0a84169-07ea-4925-bce4-7d881240a98b",
"RowId": "c896f7ec-2b20-4349-94a7-807df664d374",
"UserId": "2a6790d8-1f23-4943-b59a-c1a09c31fc19",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-03T10:41:08.936435+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-03T10:41:08.936435+00:00": 2.0
},
"MonthRange_Start": "2026-06-03T10:41:08.936435+00:00",
"MonthRange_End": "2026-06-03T10:41:08.936435+00:00",
"id": "df233140-2e13-4e13-8322-e418bb9f2784",
"ConfigId": "b0d33619-4021-4643-a586-a38001c599b9"
}
]