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": "84f5bd5c-a2ce-4e29-b3e2-98437e3bb71a",
"ResourceId": "64af4d2d-2b3f-4838-8348-fb837d6e99c9",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-07-16T02:33:40.9379659+00:00",
"DateBetweenEnd": "2026-07-16T02:33:40.9379659+00:00",
"HourOffset": 2,
"PlanId": "0d58eb61-dd94-434a-992a-db0a14eb956f"
}
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": "7b2dfb67-8c01-4db2-9bd1-ae80de65854e",
"CostTypeId": "f800e484-097e-4130-b112-b9aa748320a4",
"ResourceId": "689ec344-bab2-44c8-83e6-5ddb8fb4fafd",
"RowId": "081b0e53-7240-451a-8e77-ae30326f0b10",
"UserId": "1e348e5b-a1b4-462b-9b1d-bc7884096d4f",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-16T02:33:40.9379659+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-16T02:33:40.9379659+00:00": 2.0
},
"MonthRange_Start": "2026-07-16T02:33:40.9379659+00:00",
"MonthRange_End": "2026-07-16T02:33:40.9379659+00:00",
"id": "299d7674-8a3b-4570-92f5-fd369c4f06cd",
"ConfigId": "09df621b-1892-4d3a-b3aa-2f53d6e137e0"
},
{
"PlanId": "7b2dfb67-8c01-4db2-9bd1-ae80de65854e",
"CostTypeId": "f800e484-097e-4130-b112-b9aa748320a4",
"ResourceId": "689ec344-bab2-44c8-83e6-5ddb8fb4fafd",
"RowId": "081b0e53-7240-451a-8e77-ae30326f0b10",
"UserId": "1e348e5b-a1b4-462b-9b1d-bc7884096d4f",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-16T02:33:40.9379659+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-16T02:33:40.9379659+00:00": 2.0
},
"MonthRange_Start": "2026-07-16T02:33:40.9379659+00:00",
"MonthRange_End": "2026-07-16T02:33:40.9379659+00:00",
"id": "299d7674-8a3b-4570-92f5-fd369c4f06cd",
"ConfigId": "09df621b-1892-4d3a-b3aa-2f53d6e137e0"
}
]