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": "02624685-13ca-40e6-a674-5f9850d8356d",
"ResourceId": "83edc5b8-b78b-4677-9d4a-4e05f11e0d5a",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2025-12-29T21:32:51.3825078+00:00",
"DateBetweenEnd": "2025-12-29T21:32:51.3825078+00:00",
"HourOffset": 2,
"PlanId": "168e5057-8b89-46a4-8c1e-a472510627d6"
}
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": "395be4c0-b276-4e37-b5a9-4fcd71a0c935",
"CostTypeId": "23f672b3-4ac6-4a1f-9d2a-351938a6c1f5",
"ResourceId": "5040ac50-2c79-46ff-8979-4b73b3bc45f2",
"RowId": "4f965a16-d4ac-4fa5-9d48-c4c557e9dd4a",
"UserId": "8d0cada2-6c40-42b8-a93d-9d32c82ca30b",
"AuthKey": "sample string 6",
"Timestamp": "2025-12-29T21:32:51.3825078+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2025-12-29T21:32:51.3825078+00:00": 2.0
},
"MonthRange_Start": "2025-12-29T21:32:51.3825078+00:00",
"MonthRange_End": "2025-12-29T21:32:51.3825078+00:00",
"id": "8e8f919e-6e28-4a43-9b0e-e68328f0cec6",
"ConfigId": "f6f7df39-7ef0-429c-b90c-600a24f333fd"
},
{
"PlanId": "395be4c0-b276-4e37-b5a9-4fcd71a0c935",
"CostTypeId": "23f672b3-4ac6-4a1f-9d2a-351938a6c1f5",
"ResourceId": "5040ac50-2c79-46ff-8979-4b73b3bc45f2",
"RowId": "4f965a16-d4ac-4fa5-9d48-c4c557e9dd4a",
"UserId": "8d0cada2-6c40-42b8-a93d-9d32c82ca30b",
"AuthKey": "sample string 6",
"Timestamp": "2025-12-29T21:32:51.3825078+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2025-12-29T21:32:51.3825078+00:00": 2.0
},
"MonthRange_Start": "2025-12-29T21:32:51.3825078+00:00",
"MonthRange_End": "2025-12-29T21:32:51.3825078+00:00",
"id": "8e8f919e-6e28-4a43-9b0e-e68328f0cec6",
"ConfigId": "f6f7df39-7ef0-429c-b90c-600a24f333fd"
}
]