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": "a1777085-21cf-48bd-b102-dfd034ac88cd",
"ResourceId": "a4548bd9-4a2c-46b4-a33f-31882b092731",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-09-11T20:38:23.6648327+00:00",
"DateBetweenEnd": "2026-09-11T20:38:23.6648327+00:00",
"HourOffset": 2,
"PlanId": "99e07519-888a-40c6-ac4f-48c8b8d9f514"
}
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": "a7b811f6-d780-4859-8b55-2e8078b831a0",
"CostTypeId": "e602055f-1a39-4809-be35-27d31798f8b7",
"ResourceId": "3a41f593-e232-4ac3-9188-ad198f65ba82",
"RowId": "dd363c62-88e6-4ff2-b238-4a8776a1a9d0",
"UserId": "7b96b050-64bf-41c3-879a-ccaad706690f",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-11T20:38:23.6648327+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-11T20:38:23.6648327+00:00": 2.0
},
"MonthRange_Start": "2026-09-11T20:38:23.6648327+00:00",
"MonthRange_End": "2026-09-11T20:38:23.6648327+00:00",
"id": "de6d2e51-cf77-47a4-80ec-8620f3bb755a",
"ConfigId": "2801017a-0ccc-4afc-96a2-1b8b4e0c1435"
},
{
"PlanId": "a7b811f6-d780-4859-8b55-2e8078b831a0",
"CostTypeId": "e602055f-1a39-4809-be35-27d31798f8b7",
"ResourceId": "3a41f593-e232-4ac3-9188-ad198f65ba82",
"RowId": "dd363c62-88e6-4ff2-b238-4a8776a1a9d0",
"UserId": "7b96b050-64bf-41c3-879a-ccaad706690f",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-11T20:38:23.6648327+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-11T20:38:23.6648327+00:00": 2.0
},
"MonthRange_Start": "2026-09-11T20:38:23.6648327+00:00",
"MonthRange_End": "2026-09-11T20:38:23.6648327+00:00",
"id": "de6d2e51-cf77-47a4-80ec-8620f3bb755a",
"ConfigId": "2801017a-0ccc-4afc-96a2-1b8b4e0c1435"
}
]