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": "df47ddd5-ed4e-4138-998f-27bcf07c7505",
"ResourceId": "73a5b847-e2d9-4dba-ab18-aaa4f65d3907",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-06-24T20:36:26.1761505+00:00",
"DateBetweenEnd": "2026-06-24T20:36:26.1761505+00:00",
"HourOffset": 2,
"PlanId": "11166b98-7ce5-46c7-8554-a58cef30736b"
}
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": "256eac5d-89ae-494c-90aa-ce27684ab578",
"CostTypeId": "f5f8a5b6-f18b-4f82-8440-ed4ebbeaca13",
"ResourceId": "d6e4136d-7fa1-409d-8cb6-0a17cc29136f",
"RowId": "e9cb167c-a2e8-4d15-94c9-e6afe09c84d8",
"UserId": "03a2330d-ac13-4479-bd80-1730ccd564c0",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-24T20:36:26.1761505+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-24T20:36:26.1761505+00:00": 2.0
},
"MonthRange_Start": "2026-06-24T20:36:26.1761505+00:00",
"MonthRange_End": "2026-06-24T20:36:26.1761505+00:00",
"id": "01effb9e-448d-4a92-aca0-0ce8aa2669b2",
"ConfigId": "3c2fc8fc-74e1-4d6f-b069-b3c416ef2f26"
},
{
"PlanId": "256eac5d-89ae-494c-90aa-ce27684ab578",
"CostTypeId": "f5f8a5b6-f18b-4f82-8440-ed4ebbeaca13",
"ResourceId": "d6e4136d-7fa1-409d-8cb6-0a17cc29136f",
"RowId": "e9cb167c-a2e8-4d15-94c9-e6afe09c84d8",
"UserId": "03a2330d-ac13-4479-bd80-1730ccd564c0",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-24T20:36:26.1761505+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-24T20:36:26.1761505+00:00": 2.0
},
"MonthRange_Start": "2026-06-24T20:36:26.1761505+00:00",
"MonthRange_End": "2026-06-24T20:36:26.1761505+00:00",
"id": "01effb9e-448d-4a92-aca0-0ce8aa2669b2",
"ConfigId": "3c2fc8fc-74e1-4d6f-b069-b3c416ef2f26"
}
]