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": "3f43474a-c7fa-4785-bd4f-bb234bd0f559",
"ResourceId": "690f191b-ae0d-416d-b387-5250044e3b09",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-06-18T16:00:20.2019603+00:00",
"DateBetweenEnd": "2026-06-18T16:00:20.2019603+00:00",
"HourOffset": 2,
"PlanId": "25f83bd1-1474-473e-99fd-b033ce0d8c56"
}
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": "4e0bd552-4ce5-4746-bd83-cad7acb1fbf1",
"CostTypeId": "17f69e9f-77c1-4cbd-bb64-4a9b9c62a6c2",
"ResourceId": "c6d2a002-091f-4c17-94a7-db9b3f1ba7b9",
"RowId": "62fc5548-f6d5-4e96-8d8a-9035050753d1",
"UserId": "c8ef172b-d156-4045-80e0-4e875673e805",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-18T16:00:20.2019603+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-18T16:00:20.2019603+00:00": 2.0
},
"MonthRange_Start": "2026-06-18T16:00:20.2019603+00:00",
"MonthRange_End": "2026-06-18T16:00:20.2019603+00:00",
"id": "5dc70bc1-4139-44dd-9f15-15e54390aff7",
"ConfigId": "abe0e2b8-e621-46f1-a9a0-686c06a48270"
},
{
"PlanId": "4e0bd552-4ce5-4746-bd83-cad7acb1fbf1",
"CostTypeId": "17f69e9f-77c1-4cbd-bb64-4a9b9c62a6c2",
"ResourceId": "c6d2a002-091f-4c17-94a7-db9b3f1ba7b9",
"RowId": "62fc5548-f6d5-4e96-8d8a-9035050753d1",
"UserId": "c8ef172b-d156-4045-80e0-4e875673e805",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-18T16:00:20.2019603+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-18T16:00:20.2019603+00:00": 2.0
},
"MonthRange_Start": "2026-06-18T16:00:20.2019603+00:00",
"MonthRange_End": "2026-06-18T16:00:20.2019603+00:00",
"id": "5dc70bc1-4139-44dd-9f15-15e54390aff7",
"ConfigId": "abe0e2b8-e621-46f1-a9a0-686c06a48270"
}
]