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": "604737f6-5be0-485c-a1d0-7a3639feeb8b",
"ResourceId": "92a7e2a6-b95d-407a-a4d5-8dec4d89c2e1",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-09-05T20:09:02.3399188+00:00",
"DateBetweenEnd": "2026-09-05T20:09:02.3399188+00:00",
"HourOffset": 2,
"PlanId": "1a1e3046-71ea-425a-b6ce-e77d5d897a0e"
}
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": "b7f468b0-4cc9-4dd9-a930-aeede8727a3a",
"CostTypeId": "299e6fe1-ec97-4c2e-9836-4855bd7f08aa",
"ResourceId": "b5a06334-f53e-425c-83d4-6b75c1dadaff",
"RowId": "8032c40c-2c09-4683-b694-d32b4be8789f",
"UserId": "e9a20f55-364f-4ad0-85a2-87f55f13c49b",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-05T20:09:02.3399188+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-05T20:09:02.3399188+00:00": 2.0
},
"MonthRange_Start": "2026-09-05T20:09:02.3399188+00:00",
"MonthRange_End": "2026-09-05T20:09:02.3399188+00:00",
"id": "66cbe233-cfe1-4ef3-9181-2183b4a30f50",
"ConfigId": "1b2561a8-6a04-44f9-94b2-fbae1237784a"
},
{
"PlanId": "b7f468b0-4cc9-4dd9-a930-aeede8727a3a",
"CostTypeId": "299e6fe1-ec97-4c2e-9836-4855bd7f08aa",
"ResourceId": "b5a06334-f53e-425c-83d4-6b75c1dadaff",
"RowId": "8032c40c-2c09-4683-b694-d32b4be8789f",
"UserId": "e9a20f55-364f-4ad0-85a2-87f55f13c49b",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-05T20:09:02.3399188+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-05T20:09:02.3399188+00:00": 2.0
},
"MonthRange_Start": "2026-09-05T20:09:02.3399188+00:00",
"MonthRange_End": "2026-09-05T20:09:02.3399188+00:00",
"id": "66cbe233-cfe1-4ef3-9181-2183b4a30f50",
"ConfigId": "1b2561a8-6a04-44f9-94b2-fbae1237784a"
}
]