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": "2f0dfac0-8e11-4f57-b77e-31cae20f7d52",
"ResourceId": "8f5ac75e-dd3a-4b9e-a733-0052e933157a",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-06-21T20:12:27.3312155+00:00",
"DateBetweenEnd": "2026-06-21T20:12:27.3312155+00:00",
"HourOffset": 2,
"PlanId": "fa28e7af-cc41-479d-b036-f9d488a8eeab"
}
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": "904b4c96-b540-43ef-bb8a-202b86ed6b0d",
"CostTypeId": "3b61dda7-de86-4a3d-a02e-73e7d6ab542f",
"ResourceId": "11e7f834-263d-4255-ba19-74645f91f573",
"RowId": "a18f2070-e139-49f5-97c6-d6c2ab306fb1",
"UserId": "47759a6e-622c-4680-84ab-380fe321d80c",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-21T20:12:27.3312155+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-21T20:12:27.3312155+00:00": 2.0
},
"MonthRange_Start": "2026-06-21T20:12:27.3312155+00:00",
"MonthRange_End": "2026-06-21T20:12:27.3312155+00:00",
"id": "bf8d6038-4edc-43e8-b4fc-2a428176219f",
"ConfigId": "4e2e212d-3bc0-4855-9fd7-6a193e0e2765"
},
{
"PlanId": "904b4c96-b540-43ef-bb8a-202b86ed6b0d",
"CostTypeId": "3b61dda7-de86-4a3d-a02e-73e7d6ab542f",
"ResourceId": "11e7f834-263d-4255-ba19-74645f91f573",
"RowId": "a18f2070-e139-49f5-97c6-d6c2ab306fb1",
"UserId": "47759a6e-622c-4680-84ab-380fe321d80c",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-21T20:12:27.3312155+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-21T20:12:27.3312155+00:00": 2.0
},
"MonthRange_Start": "2026-06-21T20:12:27.3312155+00:00",
"MonthRange_End": "2026-06-21T20:12:27.3312155+00:00",
"id": "bf8d6038-4edc-43e8-b4fc-2a428176219f",
"ConfigId": "4e2e212d-3bc0-4855-9fd7-6a193e0e2765"
}
]