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": "73a7367e-ca89-4234-9c26-00a14e9871a0",
"ResourceId": "97196c31-3302-46af-b026-b47dd0c5e644",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-03-21T23:15:04.7609705+00:00",
"DateBetweenEnd": "2026-03-21T23:15:04.7609705+00:00",
"HourOffset": 2,
"PlanId": "0404db8b-ee0b-47c2-bb14-737bb868fb58"
}
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": "d6af6ad2-e485-4963-919d-aaf6b3582c41",
"CostTypeId": "5063e34a-a061-4245-8d4e-8994d009e776",
"ResourceId": "3da60dc3-86c1-4629-9ec6-5b1f6ac55fed",
"RowId": "1f585d08-0ce6-4bdd-870f-f6e67c98cd69",
"UserId": "709f459a-d90b-4823-a268-3576d6d752ff",
"AuthKey": "sample string 6",
"Timestamp": "2026-03-21T23:15:04.7609705+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-03-21T23:15:04.7609705+00:00": 2.0
},
"MonthRange_Start": "2026-03-21T23:15:04.7609705+00:00",
"MonthRange_End": "2026-03-21T23:15:04.7609705+00:00",
"id": "a5c591ca-4c6b-4591-80c1-603f778f3f60",
"ConfigId": "551cc795-f758-4e6d-8489-f81b0431ef03"
},
{
"PlanId": "d6af6ad2-e485-4963-919d-aaf6b3582c41",
"CostTypeId": "5063e34a-a061-4245-8d4e-8994d009e776",
"ResourceId": "3da60dc3-86c1-4629-9ec6-5b1f6ac55fed",
"RowId": "1f585d08-0ce6-4bdd-870f-f6e67c98cd69",
"UserId": "709f459a-d90b-4823-a268-3576d6d752ff",
"AuthKey": "sample string 6",
"Timestamp": "2026-03-21T23:15:04.7609705+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-03-21T23:15:04.7609705+00:00": 2.0
},
"MonthRange_Start": "2026-03-21T23:15:04.7609705+00:00",
"MonthRange_End": "2026-03-21T23:15:04.7609705+00:00",
"id": "a5c591ca-4c6b-4591-80c1-603f778f3f60",
"ConfigId": "551cc795-f758-4e6d-8489-f81b0431ef03"
}
]