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": "1c007735-dd78-48e5-a11d-69f97d68a4a3",
"ResourceId": "2a087736-7866-4dbb-a98f-3ee7ba103bee",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-08-03T13:17:59.1481725+00:00",
"DateBetweenEnd": "2026-08-03T13:17:59.1481725+00:00",
"HourOffset": 2,
"PlanId": "a2f80939-0dc1-4af1-a241-74a7271d585c"
}
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": "b57b2eb7-ad99-4e02-8c03-6c7289f746cf",
"CostTypeId": "babb85e5-f662-4f20-a485-0ec4f2c38338",
"ResourceId": "0de9bfaa-11b4-4a8e-a9e4-db46bff4c228",
"RowId": "6fb25faa-8de2-4432-a8d6-7d03e08bbd6b",
"UserId": "87da7bbc-0d9a-4535-9081-2abcd455d20c",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-03T13:17:59.1481725+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-03T13:17:59.1481725+00:00": 2.0
},
"MonthRange_Start": "2026-08-03T13:17:59.1481725+00:00",
"MonthRange_End": "2026-08-03T13:17:59.1481725+00:00",
"id": "f01e8e02-481b-497b-bf6f-af4477347189",
"ConfigId": "f5a34183-ca97-4b3e-8172-4df4423ab89a"
},
{
"PlanId": "b57b2eb7-ad99-4e02-8c03-6c7289f746cf",
"CostTypeId": "babb85e5-f662-4f20-a485-0ec4f2c38338",
"ResourceId": "0de9bfaa-11b4-4a8e-a9e4-db46bff4c228",
"RowId": "6fb25faa-8de2-4432-a8d6-7d03e08bbd6b",
"UserId": "87da7bbc-0d9a-4535-9081-2abcd455d20c",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-03T13:17:59.1481725+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-03T13:17:59.1481725+00:00": 2.0
},
"MonthRange_Start": "2026-08-03T13:17:59.1481725+00:00",
"MonthRange_End": "2026-08-03T13:17:59.1481725+00:00",
"id": "f01e8e02-481b-497b-bf6f-af4477347189",
"ConfigId": "f5a34183-ca97-4b3e-8172-4df4423ab89a"
}
]