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": "b7754a1f-171e-41fa-bc86-14da28b4f88d",
"ResourceId": "7648111a-5bcc-4abe-8db2-3439e5af7644",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2025-11-15T14:12:34.8611585+00:00",
"DateBetweenEnd": "2025-11-15T14:12:34.8611585+00:00",
"HourOffset": 2,
"PlanId": "4b52f9a7-f928-4543-a6b1-4eab57f3da13"
}
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": "a22e42b5-f859-42ae-94c6-2b9573d79b19",
"CostTypeId": "a5b8cd77-1ddc-4f2f-ac34-1453750b72e6",
"ResourceId": "7a6155cf-89d3-428c-9821-9c757b992921",
"RowId": "49765b4c-96a4-4f9d-b919-e6a0b11b5a8b",
"UserId": "4d64804e-6abd-4332-817e-89943ebd4a90",
"AuthKey": "sample string 6",
"Timestamp": "2025-11-15T14:12:34.876784+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2025-11-15T14:12:34.876784+00:00": 2.0
},
"MonthRange_Start": "2025-11-15T14:12:34.876784+00:00",
"MonthRange_End": "2025-11-15T14:12:34.876784+00:00",
"id": "f73f3b09-0b43-4606-a7f4-72fd7b6b683c",
"ConfigId": "9cf8591f-89a2-4f75-aa80-e46359b003cb"
},
{
"PlanId": "a22e42b5-f859-42ae-94c6-2b9573d79b19",
"CostTypeId": "a5b8cd77-1ddc-4f2f-ac34-1453750b72e6",
"ResourceId": "7a6155cf-89d3-428c-9821-9c757b992921",
"RowId": "49765b4c-96a4-4f9d-b919-e6a0b11b5a8b",
"UserId": "4d64804e-6abd-4332-817e-89943ebd4a90",
"AuthKey": "sample string 6",
"Timestamp": "2025-11-15T14:12:34.876784+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2025-11-15T14:12:34.876784+00:00": 2.0
},
"MonthRange_Start": "2025-11-15T14:12:34.876784+00:00",
"MonthRange_End": "2025-11-15T14:12:34.876784+00:00",
"id": "f73f3b09-0b43-4606-a7f4-72fd7b6b683c",
"ConfigId": "9cf8591f-89a2-4f75-aa80-e46359b003cb"
}
]