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": "4129c347-b731-4f7b-8e0e-8a71d443398f",
"ResourceId": "36f362ee-deed-4b66-b1cd-f34071303c6f",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-07-13T01:41:11.2784927+00:00",
"DateBetweenEnd": "2026-07-13T01:41:11.2784927+00:00",
"HourOffset": 2,
"PlanId": "0a1552ee-5206-4edd-83ef-85da9a6a5acf"
}
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": "1637a4f2-07c2-43af-ae8b-ff38fc8879fe",
"CostTypeId": "7033497a-1043-4a60-a5ab-3da70200a407",
"ResourceId": "44afa43b-b4ac-4d82-b1f4-339b7220b0f4",
"RowId": "8297941a-6a74-4976-9a6e-840e8beaadb0",
"UserId": "973b07b8-23b1-44be-a9f8-02442c31a97a",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-13T01:41:11.2784927+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-13T01:41:11.2784927+00:00": 2.0
},
"MonthRange_Start": "2026-07-13T01:41:11.2784927+00:00",
"MonthRange_End": "2026-07-13T01:41:11.2784927+00:00",
"id": "892f3640-aad9-4e38-9d23-0dbadc6d22a4",
"ConfigId": "d4d4b43f-0d46-4de4-a712-8ef55e25f0d2"
},
{
"PlanId": "1637a4f2-07c2-43af-ae8b-ff38fc8879fe",
"CostTypeId": "7033497a-1043-4a60-a5ab-3da70200a407",
"ResourceId": "44afa43b-b4ac-4d82-b1f4-339b7220b0f4",
"RowId": "8297941a-6a74-4976-9a6e-840e8beaadb0",
"UserId": "973b07b8-23b1-44be-a9f8-02442c31a97a",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-13T01:41:11.2784927+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-13T01:41:11.2784927+00:00": 2.0
},
"MonthRange_Start": "2026-07-13T01:41:11.2784927+00:00",
"MonthRange_End": "2026-07-13T01:41:11.2784927+00:00",
"id": "892f3640-aad9-4e38-9d23-0dbadc6d22a4",
"ConfigId": "d4d4b43f-0d46-4de4-a712-8ef55e25f0d2"
}
]