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": "9cd12dd7-5add-4a22-9597-40e7e1b3a861",
"ResourceId": "509c5d20-f448-4887-8da6-2ad3f557e8fe",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-07-07T01:36:43.8576483+00:00",
"DateBetweenEnd": "2026-07-07T01:36:43.8576483+00:00",
"HourOffset": 2,
"PlanId": "a4fef24f-3b77-4096-a81f-244ea5e37572"
}
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": "778c5447-40d5-40d5-98eb-f3ffaf1b841d",
"CostTypeId": "ce45b0c3-89af-453f-a642-47889ba0116a",
"ResourceId": "5aae95ec-3cf7-4782-bcc5-acec1a8b28d4",
"RowId": "44ab977a-7aaf-49e5-8cd1-5aa19089d54d",
"UserId": "28d9177e-53bc-4099-9cd2-a39e0bc27526",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-07T01:36:43.8732738+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-07T01:36:43.8732738+00:00": 2.0
},
"MonthRange_Start": "2026-07-07T01:36:43.8732738+00:00",
"MonthRange_End": "2026-07-07T01:36:43.8732738+00:00",
"id": "c78f736b-34d4-47ea-aeef-19ad13724853",
"ConfigId": "7060a0b8-3f57-4fe5-a87b-66992c502617"
},
{
"PlanId": "778c5447-40d5-40d5-98eb-f3ffaf1b841d",
"CostTypeId": "ce45b0c3-89af-453f-a642-47889ba0116a",
"ResourceId": "5aae95ec-3cf7-4782-bcc5-acec1a8b28d4",
"RowId": "44ab977a-7aaf-49e5-8cd1-5aa19089d54d",
"UserId": "28d9177e-53bc-4099-9cd2-a39e0bc27526",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-07T01:36:43.8732738+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-07T01:36:43.8732738+00:00": 2.0
},
"MonthRange_Start": "2026-07-07T01:36:43.8732738+00:00",
"MonthRange_End": "2026-07-07T01:36:43.8732738+00:00",
"id": "c78f736b-34d4-47ea-aeef-19ad13724853",
"ConfigId": "7060a0b8-3f57-4fe5-a87b-66992c502617"
}
]