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": "3ad70e0a-dc71-49ee-abe6-b56568231806",
"ResourceId": "3fa554e1-bb14-448a-8f2e-7cc254e5cc44",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-07-28T11:50:46.1215443+00:00",
"DateBetweenEnd": "2026-07-28T11:50:46.1215443+00:00",
"HourOffset": 2,
"PlanId": "a436ba01-1635-4c2b-8d6a-692078aaca19"
}
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": "99f45b3d-02e0-4b6c-aa2a-d4e43230c3ed",
"CostTypeId": "a78cab48-2af9-4af4-b80c-99d8902720ed",
"ResourceId": "56d45356-be3b-4000-8b9a-691abf8b4d84",
"RowId": "425d108f-b592-482e-8826-92df3cdc943f",
"UserId": "ecacc830-b540-431b-b082-9414f549e443",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-28T11:50:46.1215443+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-28T11:50:46.1215443+00:00": 2.0
},
"MonthRange_Start": "2026-07-28T11:50:46.1215443+00:00",
"MonthRange_End": "2026-07-28T11:50:46.1215443+00:00",
"id": "d30de9c4-3a09-4d95-b074-6b4e2342532a",
"ConfigId": "9a2e8a1c-e718-4a12-964a-2fc765f88b86"
},
{
"PlanId": "99f45b3d-02e0-4b6c-aa2a-d4e43230c3ed",
"CostTypeId": "a78cab48-2af9-4af4-b80c-99d8902720ed",
"ResourceId": "56d45356-be3b-4000-8b9a-691abf8b4d84",
"RowId": "425d108f-b592-482e-8826-92df3cdc943f",
"UserId": "ecacc830-b540-431b-b082-9414f549e443",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-28T11:50:46.1215443+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-28T11:50:46.1215443+00:00": 2.0
},
"MonthRange_Start": "2026-07-28T11:50:46.1215443+00:00",
"MonthRange_End": "2026-07-28T11:50:46.1215443+00:00",
"id": "d30de9c4-3a09-4d95-b074-6b4e2342532a",
"ConfigId": "9a2e8a1c-e718-4a12-964a-2fc765f88b86"
}
]