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": "8e2901e3-77ff-43f5-8aec-45a5a80f99d9",
"ResourceId": "248acf20-f7b1-4c3e-bcb6-8b17f9f1fc69",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-03-01T06:49:37.2879008+00:00",
"DateBetweenEnd": "2026-03-01T06:49:37.2879008+00:00",
"HourOffset": 2,
"PlanId": "188b1bac-67d1-4f43-b0e3-4da7030fd56e"
}
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": "a5853e2e-6ab3-4091-952f-1085fe514e2f",
"CostTypeId": "4efefedb-26c7-4ce4-92da-36a098a2d7e5",
"ResourceId": "f4aebb85-7470-4e7d-8489-af07881f8a0a",
"RowId": "c6ac9d00-08c2-4998-b355-50b070072910",
"UserId": "32ac0486-16f4-4c4b-bfc6-dc6055072274",
"AuthKey": "sample string 6",
"Timestamp": "2026-03-01T06:49:37.2879008+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-03-01T06:49:37.2879008+00:00": 2.0
},
"MonthRange_Start": "2026-03-01T06:49:37.2879008+00:00",
"MonthRange_End": "2026-03-01T06:49:37.2879008+00:00",
"id": "ad3791d6-16a6-45f1-8b63-ad14858f61da",
"ConfigId": "20225f2c-3f59-4045-9239-020eb114f47e"
},
{
"PlanId": "a5853e2e-6ab3-4091-952f-1085fe514e2f",
"CostTypeId": "4efefedb-26c7-4ce4-92da-36a098a2d7e5",
"ResourceId": "f4aebb85-7470-4e7d-8489-af07881f8a0a",
"RowId": "c6ac9d00-08c2-4998-b355-50b070072910",
"UserId": "32ac0486-16f4-4c4b-bfc6-dc6055072274",
"AuthKey": "sample string 6",
"Timestamp": "2026-03-01T06:49:37.2879008+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-03-01T06:49:37.2879008+00:00": 2.0
},
"MonthRange_Start": "2026-03-01T06:49:37.2879008+00:00",
"MonthRange_End": "2026-03-01T06:49:37.2879008+00:00",
"id": "ad3791d6-16a6-45f1-8b63-ad14858f61da",
"ConfigId": "20225f2c-3f59-4045-9239-020eb114f47e"
}
]