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": "78ed34cd-d2ca-4520-8675-1a56eac1e10a",
"ResourceId": "546236fd-50fa-44ed-8517-0f8ad3c60825",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-04-12T03:38:16.3209598+00:00",
"DateBetweenEnd": "2026-04-12T03:38:16.3209598+00:00",
"HourOffset": 2,
"PlanId": "77993927-8930-4230-8411-c2932e9a30c5"
}
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": "284faf6a-9a95-4b2c-843a-2fbea22a65f7",
"CostTypeId": "cf8852a1-7777-4df1-99af-92e42362a12f",
"ResourceId": "bbcae726-ab88-44ab-963e-732573b4b2f4",
"RowId": "e11182f7-ef5e-4dec-89e3-2d37c9248c1c",
"UserId": "4c06453a-cced-4207-80f8-74a9479cad5f",
"AuthKey": "sample string 6",
"Timestamp": "2026-04-12T03:38:16.3209598+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-04-12T03:38:16.3209598+00:00": 2.0
},
"MonthRange_Start": "2026-04-12T03:38:16.3209598+00:00",
"MonthRange_End": "2026-04-12T03:38:16.3209598+00:00",
"id": "14170496-c92e-46ed-ae30-8bb5eb120b26",
"ConfigId": "72458779-a021-40c8-91b8-05a8bfe92e8a"
},
{
"PlanId": "284faf6a-9a95-4b2c-843a-2fbea22a65f7",
"CostTypeId": "cf8852a1-7777-4df1-99af-92e42362a12f",
"ResourceId": "bbcae726-ab88-44ab-963e-732573b4b2f4",
"RowId": "e11182f7-ef5e-4dec-89e3-2d37c9248c1c",
"UserId": "4c06453a-cced-4207-80f8-74a9479cad5f",
"AuthKey": "sample string 6",
"Timestamp": "2026-04-12T03:38:16.3209598+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-04-12T03:38:16.3209598+00:00": 2.0
},
"MonthRange_Start": "2026-04-12T03:38:16.3209598+00:00",
"MonthRange_End": "2026-04-12T03:38:16.3209598+00:00",
"id": "14170496-c92e-46ed-ae30-8bb5eb120b26",
"ConfigId": "72458779-a021-40c8-91b8-05a8bfe92e8a"
}
]