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": "14c11a1a-4439-464c-968f-2de4895e361f",
"ResourceId": "43081e0e-49b8-4735-b3ec-fb18dc2d4d39",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-02-11T00:40:20.293351+00:00",
"DateBetweenEnd": "2026-02-11T00:40:20.293351+00:00",
"HourOffset": 2,
"PlanId": "bd007496-09ca-43a8-a02a-ae05a8c7e7ce"
}
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": "e348b74b-be5b-459c-91f6-58a265677cde",
"CostTypeId": "db1e70c7-6bc4-4d94-8397-dfed3821a01f",
"ResourceId": "32a2b3cd-07a8-4a4a-8c68-1c9b49bd504c",
"RowId": "c32b9c21-0e19-41bc-9371-4f996bb9a3ed",
"UserId": "09fb922a-3864-4124-8e1e-fe430c3504b7",
"AuthKey": "sample string 6",
"Timestamp": "2026-02-11T00:40:20.293351+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-02-11T00:40:20.293351+00:00": 2.0
},
"MonthRange_Start": "2026-02-11T00:40:20.293351+00:00",
"MonthRange_End": "2026-02-11T00:40:20.293351+00:00",
"id": "117fd602-1a2d-446c-af4f-c86e83ab5223",
"ConfigId": "264ec64c-eb6b-4642-b3de-5c5b74f76aa6"
},
{
"PlanId": "e348b74b-be5b-459c-91f6-58a265677cde",
"CostTypeId": "db1e70c7-6bc4-4d94-8397-dfed3821a01f",
"ResourceId": "32a2b3cd-07a8-4a4a-8c68-1c9b49bd504c",
"RowId": "c32b9c21-0e19-41bc-9371-4f996bb9a3ed",
"UserId": "09fb922a-3864-4124-8e1e-fe430c3504b7",
"AuthKey": "sample string 6",
"Timestamp": "2026-02-11T00:40:20.293351+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-02-11T00:40:20.293351+00:00": 2.0
},
"MonthRange_Start": "2026-02-11T00:40:20.293351+00:00",
"MonthRange_End": "2026-02-11T00:40:20.293351+00:00",
"id": "117fd602-1a2d-446c-af4f-c86e83ab5223",
"ConfigId": "264ec64c-eb6b-4642-b3de-5c5b74f76aa6"
}
]