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": "f23c9da0-19ea-430b-a6ec-20b48b3c08eb",
"ResourceId": "5e90286e-6612-4bd4-ab5a-c7bd8e27332a",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-08-21T17:05:01.2619036+00:00",
"DateBetweenEnd": "2026-08-21T17:05:01.2619036+00:00",
"HourOffset": 2,
"PlanId": "328e0aa4-3212-47d4-bc7b-d44eedbf36cc"
}
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": "e21668ce-7f52-4ced-a21b-2c3ace8bb3c2",
"CostTypeId": "17ce33ed-5e70-4c01-8c7c-311b98592614",
"ResourceId": "7d30e7cc-7ccc-44e6-9b94-c0c32f38f6c8",
"RowId": "3c2e6111-e00e-42c0-b658-850c67d9b547",
"UserId": "70844892-e253-4305-a737-1f1d08c60dd9",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-21T17:05:01.2775285+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-21T17:05:01.2775285+00:00": 2.0
},
"MonthRange_Start": "2026-08-21T17:05:01.2775285+00:00",
"MonthRange_End": "2026-08-21T17:05:01.2775285+00:00",
"id": "59471e22-41bd-4ba2-8b46-07846cdd4bc7",
"ConfigId": "5b98529f-9eb5-4241-8c35-2b287f95a658"
},
{
"PlanId": "e21668ce-7f52-4ced-a21b-2c3ace8bb3c2",
"CostTypeId": "17ce33ed-5e70-4c01-8c7c-311b98592614",
"ResourceId": "7d30e7cc-7ccc-44e6-9b94-c0c32f38f6c8",
"RowId": "3c2e6111-e00e-42c0-b658-850c67d9b547",
"UserId": "70844892-e253-4305-a737-1f1d08c60dd9",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-21T17:05:01.2775285+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-21T17:05:01.2775285+00:00": 2.0
},
"MonthRange_Start": "2026-08-21T17:05:01.2775285+00:00",
"MonthRange_End": "2026-08-21T17:05:01.2775285+00:00",
"id": "59471e22-41bd-4ba2-8b46-07846cdd4bc7",
"ConfigId": "5b98529f-9eb5-4241-8c35-2b287f95a658"
}
]