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": "edfeea75-5af3-4cef-a564-763f36036443",
"ResourceId": "4034614b-a398-4c18-9957-f7d9fd144aeb",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-05-10T03:22:30.5220358+00:00",
"DateBetweenEnd": "2026-05-10T03:22:30.5220358+00:00",
"HourOffset": 2,
"PlanId": "e44aa88d-ae6c-4ea3-bf3c-8a969c85f09c"
}
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": "5da6f5c0-56d2-4ed0-ac32-002a482501b1",
"CostTypeId": "3b376106-17aa-4ee7-a752-38190cd039ed",
"ResourceId": "5755b7cd-b850-4eda-be4d-8b8fb4488c03",
"RowId": "f694f857-3f42-4606-a31d-21210ff63604",
"UserId": "80ab39aa-596a-43ea-a9a6-07b40aa9c85a",
"AuthKey": "sample string 6",
"Timestamp": "2026-05-10T03:22:30.5220358+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-05-10T03:22:30.5220358+00:00": 2.0
},
"MonthRange_Start": "2026-05-10T03:22:30.5220358+00:00",
"MonthRange_End": "2026-05-10T03:22:30.5220358+00:00",
"id": "633ad984-c842-4273-a989-9b5647d7c7c6",
"ConfigId": "4ae28267-6ff5-4b71-a268-dda850026801"
},
{
"PlanId": "5da6f5c0-56d2-4ed0-ac32-002a482501b1",
"CostTypeId": "3b376106-17aa-4ee7-a752-38190cd039ed",
"ResourceId": "5755b7cd-b850-4eda-be4d-8b8fb4488c03",
"RowId": "f694f857-3f42-4606-a31d-21210ff63604",
"UserId": "80ab39aa-596a-43ea-a9a6-07b40aa9c85a",
"AuthKey": "sample string 6",
"Timestamp": "2026-05-10T03:22:30.5220358+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-05-10T03:22:30.5220358+00:00": 2.0
},
"MonthRange_Start": "2026-05-10T03:22:30.5220358+00:00",
"MonthRange_End": "2026-05-10T03:22:30.5220358+00:00",
"id": "633ad984-c842-4273-a989-9b5647d7c7c6",
"ConfigId": "4ae28267-6ff5-4b71-a268-dda850026801"
}
]