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": "189390d0-0878-40e9-a470-acce239f4d9c",
"ResourceId": "b55ebf00-24a1-4a01-984e-15f9e982a597",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-07-22T11:08:05.4546173+00:00",
"DateBetweenEnd": "2026-07-22T11:08:05.4546173+00:00",
"HourOffset": 2,
"PlanId": "9b4b5e55-91e4-4959-a4bb-0d20c2486d90"
}
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": "0f0ec2f6-9d8c-4b6f-9573-f639f4f00541",
"CostTypeId": "e6c94ff3-e941-4363-b490-c0c60fbc2238",
"ResourceId": "5d9a9646-07f5-47af-ab50-fdaa5211f5bb",
"RowId": "e7a94931-3dc5-4600-a297-7e8fa1df18e0",
"UserId": "104dddd6-d1f3-459b-8bbc-827a9a27a3fa",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-22T11:08:05.4546173+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-22T11:08:05.4546173+00:00": 2.0
},
"MonthRange_Start": "2026-07-22T11:08:05.4546173+00:00",
"MonthRange_End": "2026-07-22T11:08:05.4546173+00:00",
"id": "5df8fd55-4bb4-4abb-bac3-4bfe3ca99fbf",
"ConfigId": "e2a80b5f-7eb3-483b-8c0a-5cac6cf8b761"
},
{
"PlanId": "0f0ec2f6-9d8c-4b6f-9573-f639f4f00541",
"CostTypeId": "e6c94ff3-e941-4363-b490-c0c60fbc2238",
"ResourceId": "5d9a9646-07f5-47af-ab50-fdaa5211f5bb",
"RowId": "e7a94931-3dc5-4600-a297-7e8fa1df18e0",
"UserId": "104dddd6-d1f3-459b-8bbc-827a9a27a3fa",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-22T11:08:05.4546173+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-22T11:08:05.4546173+00:00": 2.0
},
"MonthRange_Start": "2026-07-22T11:08:05.4546173+00:00",
"MonthRange_End": "2026-07-22T11:08:05.4546173+00:00",
"id": "5df8fd55-4bb4-4abb-bac3-4bfe3ca99fbf",
"ConfigId": "e2a80b5f-7eb3-483b-8c0a-5cac6cf8b761"
}
]