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": "9571db07-6d93-4fa3-8339-d0d9b358091f",
"ResourceId": "9ca12b8c-680c-4f29-8d62-db56b3464ccd",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-05-17T04:21:05.9505365+00:00",
"DateBetweenEnd": "2026-05-17T04:21:05.9505365+00:00",
"HourOffset": 2,
"PlanId": "a1cffd89-a47d-4801-ab2b-1347c669cf7c"
}
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": "f5dde158-b6f8-41bf-9509-295a8cb8065f",
"CostTypeId": "df4039f2-c0c0-42b7-89d1-d9fbdfeea9d4",
"ResourceId": "0f5f2038-ea21-4e5c-8dc3-8d912cd7793c",
"RowId": "c3915a4c-900a-4082-9dfe-9351efca4221",
"UserId": "9df003f2-3501-4107-b818-920380f8353e",
"AuthKey": "sample string 6",
"Timestamp": "2026-05-17T04:21:05.9505365+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-05-17T04:21:05.9505365+00:00": 2.0
},
"MonthRange_Start": "2026-05-17T04:21:05.9505365+00:00",
"MonthRange_End": "2026-05-17T04:21:05.9505365+00:00",
"id": "626535ca-7eec-454a-b8f7-2fc76433ca60",
"ConfigId": "be3406d7-5ce9-490c-8bd4-64fed8c54bdc"
},
{
"PlanId": "f5dde158-b6f8-41bf-9509-295a8cb8065f",
"CostTypeId": "df4039f2-c0c0-42b7-89d1-d9fbdfeea9d4",
"ResourceId": "0f5f2038-ea21-4e5c-8dc3-8d912cd7793c",
"RowId": "c3915a4c-900a-4082-9dfe-9351efca4221",
"UserId": "9df003f2-3501-4107-b818-920380f8353e",
"AuthKey": "sample string 6",
"Timestamp": "2026-05-17T04:21:05.9505365+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-05-17T04:21:05.9505365+00:00": 2.0
},
"MonthRange_Start": "2026-05-17T04:21:05.9505365+00:00",
"MonthRange_End": "2026-05-17T04:21:05.9505365+00:00",
"id": "626535ca-7eec-454a-b8f7-2fc76433ca60",
"ConfigId": "be3406d7-5ce9-490c-8bd4-64fed8c54bdc"
}
]