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": "6250677c-e659-4025-9a70-2f28b4c95c93",
"ResourceId": "fffa18fd-14bf-4cdf-bae4-3ad3bd88035d",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-02-15T03:34:57.5490843+00:00",
"DateBetweenEnd": "2026-02-15T03:34:57.5490843+00:00",
"HourOffset": 2,
"PlanId": "26b58f64-fdf6-4d28-800f-f47f094b85ed"
}
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": "357bbd20-3380-4a77-adb5-e8e85f6166b5",
"CostTypeId": "85e7e8f8-91b0-414b-9dab-02f7253183ff",
"ResourceId": "3a85bdf4-4451-49c9-92b3-3988e38fbf3d",
"RowId": "07877591-86c4-4190-b368-5e690008e38a",
"UserId": "fb18cb19-15cf-4c59-8ff6-6101c1b4ab84",
"AuthKey": "sample string 6",
"Timestamp": "2026-02-15T03:34:57.5490843+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-02-15T03:34:57.5490843+00:00": 2.0
},
"MonthRange_Start": "2026-02-15T03:34:57.5490843+00:00",
"MonthRange_End": "2026-02-15T03:34:57.5490843+00:00",
"id": "fc2a055c-d69a-4eca-b8ff-f63b5b21aa3d",
"ConfigId": "896f880d-45f6-4ffd-864f-9cb02abe8383"
},
{
"PlanId": "357bbd20-3380-4a77-adb5-e8e85f6166b5",
"CostTypeId": "85e7e8f8-91b0-414b-9dab-02f7253183ff",
"ResourceId": "3a85bdf4-4451-49c9-92b3-3988e38fbf3d",
"RowId": "07877591-86c4-4190-b368-5e690008e38a",
"UserId": "fb18cb19-15cf-4c59-8ff6-6101c1b4ab84",
"AuthKey": "sample string 6",
"Timestamp": "2026-02-15T03:34:57.5490843+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-02-15T03:34:57.5490843+00:00": 2.0
},
"MonthRange_Start": "2026-02-15T03:34:57.5490843+00:00",
"MonthRange_End": "2026-02-15T03:34:57.5490843+00:00",
"id": "fc2a055c-d69a-4eca-b8ff-f63b5b21aa3d",
"ConfigId": "896f880d-45f6-4ffd-864f-9cb02abe8383"
}
]