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": "6a3ebed5-339e-4ceb-a2d1-de6c058ff3ee",
"ResourceId": "3145617a-960f-418c-b7fe-84db0433dc5d",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-05-22T11:00:11.0707715+00:00",
"DateBetweenEnd": "2026-05-22T11:00:11.0707715+00:00",
"HourOffset": 2,
"PlanId": "8d8f2ceb-bffd-4b6d-87f5-b1ecae2740a4"
}
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": "cd77bb2d-584f-4ed9-88c7-25314ff593fd",
"CostTypeId": "eaf507b3-3393-4b79-9ead-22bdcaeb455c",
"ResourceId": "9292fbee-ffbf-4911-8bda-dfe5e66c08c1",
"RowId": "7bd3d4c7-9ead-4b5c-942a-655314e9b236",
"UserId": "240eaa62-cb36-497b-99a9-22f61f135291",
"AuthKey": "sample string 6",
"Timestamp": "2026-05-22T11:00:11.0707715+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-05-22T11:00:11.0707715+00:00": 2.0
},
"MonthRange_Start": "2026-05-22T11:00:11.0707715+00:00",
"MonthRange_End": "2026-05-22T11:00:11.0707715+00:00",
"id": "2a11bb20-4598-4bbe-9c60-aa50a220510f",
"ConfigId": "5df90d45-29e2-4418-b9cd-e6d4405497a3"
},
{
"PlanId": "cd77bb2d-584f-4ed9-88c7-25314ff593fd",
"CostTypeId": "eaf507b3-3393-4b79-9ead-22bdcaeb455c",
"ResourceId": "9292fbee-ffbf-4911-8bda-dfe5e66c08c1",
"RowId": "7bd3d4c7-9ead-4b5c-942a-655314e9b236",
"UserId": "240eaa62-cb36-497b-99a9-22f61f135291",
"AuthKey": "sample string 6",
"Timestamp": "2026-05-22T11:00:11.0707715+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-05-22T11:00:11.0707715+00:00": 2.0
},
"MonthRange_Start": "2026-05-22T11:00:11.0707715+00:00",
"MonthRange_End": "2026-05-22T11:00:11.0707715+00:00",
"id": "2a11bb20-4598-4bbe-9c60-aa50a220510f",
"ConfigId": "5df90d45-29e2-4418-b9cd-e6d4405497a3"
}
]